Removing unused file

git-svn-id: svn://10.0.0.236/branches/XPCDOM_20010329_BRANCH@93917 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%netscape.com
2001-05-04 08:35:45 +00:00
parent 5b49b84446
commit 03992dcc49
4 changed files with 0 additions and 59 deletions

View File

@@ -31,7 +31,6 @@ nsIDOMScriptObjectFactory.h
nsDOMCID.h
nsDOMPropEnums.h
nsDOMPropNames.h
nsIScriptNameSetRegistry.h
nsIScriptExternalNameSet.h
nsIScriptNameSpaceManager.h
nsDOMError.h

View File

@@ -46,7 +46,6 @@ EXPORTS=nsIScriptContext.h \
nsDOMCID.h \
nsDOMPropEnums.h \
nsDOMPropNames.h \
nsIScriptNameSetRegistry.h \
nsIScriptExternalNameSet.h \
nsIScriptNameSpaceManager.h \
nsDOMError.h \

View File

@@ -44,7 +44,6 @@ EXPORTS=nsIScriptContext.h \
nsDOMCID.h \
nsDOMPropEnums.h \
nsDOMPropNames.h \
nsIScriptNameSetRegistry.h \
nsIScriptExternalNameSet.h \
nsIScriptNameSpaceManager.h \
nsDOMError.h \

View File

@@ -1,56 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Mozilla Communicator client code.
*
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
#ifndef nsIScriptNameSetRegistry_h__
#define nsIScriptNameSetRegistry_h__
#include "nscore.h"
#include "nsString.h"
#include "nsISupports.h"
#define NS_ISCRIPTNAMESETREGISTRY_IID \
{0xa6cf90d9, 0x15b3, 0x11d2, \
{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
class nsIScriptContext;
class nsIScriptExternalNameSet;
/**
* Interface used to add and remove name sets. These name sets
* are asked to register themselves with a namespace registry
* for every new script context.
*/
class nsIScriptNameSetRegistry : public nsISupports {
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISCRIPTNAMESETREGISTRY_IID);
/**
* Intialize classes associated with the name sets.
*
* @param aScriptContext the script context within which to initialize
* @result NS_OK if successful
*/
NS_IMETHOD ResolveName(const nsAReadableString& aName,
nsIScriptContext* aContext) = 0;
};
#endif /* nsIScriptNameSetRegistry_h__ */