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: #include "nsISupports.idl" michael@0: michael@0: /* michael@0: * Holds localization message tag and message category michael@0: * for security related console messages. michael@0: */ michael@0: [uuid(FE9FC9B6-DDE2-11E2-A8F1-0A326188709B)] michael@0: interface nsISecurityConsoleMessage : nsISupports michael@0: { michael@0: attribute AString tag; michael@0: attribute AString category; michael@0: }; michael@0: michael@0: %{ C++ michael@0: #define NS_SECURITY_CONSOLE_MESSAGE_CONTRACTID "@mozilla.org/securityconsole/message;1" michael@0: %}