Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef nsIScriptExternalNameSet_h__ |
michael@0 | 7 | #define nsIScriptExternalNameSet_h__ |
michael@0 | 8 | |
michael@0 | 9 | #include "nsISupports.h" |
michael@0 | 10 | |
michael@0 | 11 | #define NS_ISCRIPTEXTERNALNAMESET_IID \ |
michael@0 | 12 | {0xa6cf90da, 0x15b3, 0x11d2, \ |
michael@0 | 13 | {0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}} |
michael@0 | 14 | |
michael@0 | 15 | class nsIScriptContext; |
michael@0 | 16 | |
michael@0 | 17 | /** |
michael@0 | 18 | * This interface represents a set of names or symbols that should be |
michael@0 | 19 | * added to the "global" namespace of a script context. A name set is |
michael@0 | 20 | * registered with the name set registry (see |
michael@0 | 21 | * <code>nsIScriptNameSetRegistry</code>) at component registration |
michael@0 | 22 | * time using the category manager. |
michael@0 | 23 | */ |
michael@0 | 24 | |
michael@0 | 25 | class nsIScriptExternalNameSet : public nsISupports |
michael@0 | 26 | { |
michael@0 | 27 | public: |
michael@0 | 28 | NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCRIPTEXTERNALNAMESET_IID) |
michael@0 | 29 | |
michael@0 | 30 | /** |
michael@0 | 31 | * Called to tell the name set to do any initialization it needs to |
michael@0 | 32 | */ |
michael@0 | 33 | NS_IMETHOD InitializeNameSet(nsIScriptContext* aScriptContext) = 0; |
michael@0 | 34 | }; |
michael@0 | 35 | |
michael@0 | 36 | NS_DEFINE_STATIC_IID_ACCESSOR(nsIScriptExternalNameSet, |
michael@0 | 37 | NS_ISCRIPTEXTERNALNAMESET_IID) |
michael@0 | 38 | |
michael@0 | 39 | #endif /* nsIScriptExternalNameSet_h__ */ |