nsAboutBlank.h 983 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef nsAboutBlank_h__
  6. #define nsAboutBlank_h__
  7. #include "nsIAboutModule.h"
  8. class nsAboutBlank : public nsIAboutModule
  9. {
  10. public:
  11. NS_DECL_ISUPPORTS
  12. NS_DECL_NSIABOUTMODULE
  13. nsAboutBlank() {}
  14. static nsresult
  15. Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
  16. private:
  17. virtual ~nsAboutBlank() {}
  18. };
  19. #define NS_ABOUT_BLANK_MODULE_CID \
  20. { /* 3decd6c8-30ef-11d3-8cd0-0060b0fc14a3 */ \
  21. 0x3decd6c8, \
  22. 0x30ef, \
  23. 0x11d3, \
  24. {0x8c, 0xd0, 0x00, 0x60, 0xb0, 0xfc, 0x14, 0xa3} \
  25. }
  26. #endif // nsAboutBlank_h__