michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 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 nsIScriptNameSpaceManager_h__ michael@0: #define nsIScriptNameSpaceManager_h__ michael@0: michael@0: #define JAVASCRIPT_GLOBAL_CONSTRUCTOR_CATEGORY \ michael@0: "JavaScript-global-constructor" michael@0: michael@0: #define JAVASCRIPT_GLOBAL_CONSTRUCTOR_PROTO_ALIAS_CATEGORY \ michael@0: "JavaScript-global-constructor-prototype-alias" michael@0: michael@0: #define JAVASCRIPT_GLOBAL_PROPERTY_CATEGORY \ michael@0: "JavaScript-global-property" michael@0: michael@0: // a global property that is only accessible to privileged script michael@0: #define JAVASCRIPT_GLOBAL_PRIVILEGED_PROPERTY_CATEGORY \ michael@0: "JavaScript-global-privileged-property" michael@0: michael@0: #define JAVASCRIPT_NAVIGATOR_PROPERTY_CATEGORY \ michael@0: "JavaScript-navigator-property" michael@0: michael@0: #define JAVASCRIPT_GLOBAL_STATIC_NAMESET_CATEGORY \ michael@0: "JavaScript-global-static-nameset" michael@0: michael@0: #define JAVASCRIPT_DOM_CLASS \ michael@0: "JavaScript-DOM-class" michael@0: michael@0: #define JAVASCRIPT_DOM_INTERFACE \ michael@0: "JavaScript-DOM-interface" michael@0: michael@0: #endif /* nsIScriptNameSpaceManager_h__ */