*not part of the build*

fix for 94194
a=edburns@acm.org
r=idk@eng.sun.com


git-svn-id: svn://10.0.0.236/trunk@100654 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
idk%eng.sun.com
2001-08-09 09:22:19 +00:00
parent edc708a49d
commit 9c3c922807
2 changed files with 6 additions and 0 deletions

View File

@@ -29,5 +29,6 @@ interface nsIXPIDLServiceManager : nsISupports
void registerService(in nsCIDRef aClass, in nsISupports aService);
void unregisterService(in nsCIDRef aClass);
nsISupports getService(in nsCIDRef aClass, in nsIIDRef aIID);
nsISupports getServiceByContractID(in string contractID, in nsIIDRef aIID);
void ReleaseService(in nsCIDRef aClass, in nsISupports service);
};

View File

@@ -39,6 +39,11 @@ NS_IMETHODIMP nsXPIDLServiceManager::UnregisterService(const nsCID & aClass) {
NS_IMETHODIMP nsXPIDLServiceManager::GetService(const nsCID & aClass, const nsIID & aIID, nsISupports **_retval) {
return nsServiceManager::GetService(aClass,aIID,_retval);
}
NS_IMETHODIMP nsXPIDLServiceManager::GetServiceByContractID(const char *contractID, const nsIID & aIID, nsISupports **_retval) {
return nsServiceManager::GetService(contractID,aIID,_retval);
}
NS_IMETHODIMP nsXPIDLServiceManager::ReleaseService(const nsCID & aClass, nsISupports *service) {
return nsServiceManager::ReleaseService(aClass,service);
}