michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef nsSecurityConsoleMessage_h__ michael@0: #define nsSecurityConsoleMessage_h__ michael@0: #include "nsISecurityConsoleMessage.h" michael@0: #include "nsString.h" michael@0: michael@0: class nsSecurityConsoleMessage MOZ_FINAL : public nsISecurityConsoleMessage michael@0: { michael@0: public: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSISECURITYCONSOLEMESSAGE michael@0: michael@0: nsSecurityConsoleMessage(); michael@0: michael@0: private: michael@0: ~nsSecurityConsoleMessage(); michael@0: michael@0: protected: michael@0: nsString mTag; michael@0: nsString mCategory; michael@0: }; michael@0: michael@0: #define NS_SECURITY_CONSOLE_MESSAGE_CID \ michael@0: {0x43ebf210, 0x8a7b, 0x4ddb, {0xa8, 0x3d, 0xb8, 0x7c, 0x51, 0xa0, 0x58, 0xdb}} michael@0: #endif //nsSecurityConsoleMessage_h__