Fix build bustage.

This commit is contained in:
waterson%netscape.com 2000-07-22 03:59:49 +00:00
parent f364059419
commit 76763f79d2

View File

@ -183,6 +183,19 @@ public:
PRBool forceJSEnabled = PR_FALSE,
PRUint32 postHeadersLength = 0,
const char* postHeaders = NULL);
NS_IMETHOD
RegisterPlugin(REFNSIID aCID,
const char* aPluginName,
const char* aDescription,
const char** aMimeTypes,
const char** aMimeDescriptions,
const char** aFileExtensions,
PRInt32 aCount);
NS_IMETHOD
UnregisterPlugin(REFNSIID aCID);
////////////////////////////////////////////////////////////////////////////
// from nsIPluginManager2:
@ -1580,6 +1593,28 @@ CPluginManager::PostURL(nsISupports* pluginInst,
return fromNPError[err];
}
NS_IMETHODIMP
CPluginManager::RegisterPlugin(REFNSIID aCID,
const char* aPluginName,
const char* aDescription,
const char** aMimeTypes,
const char** aMimeDescriptions,
const char** aFileExtensions,
PRInt32 aCount)
{
// XXXwaterson I don't think we need to do anything here.
return NS_OK;
}
NS_IMETHODIMP
CPluginManager::UnregisterPlugin(REFNSIID aCID)
{
// XXXwaterson I don't think we need to do anything here.
return NS_OK;
}
//////////////////////////////
// nsIPluginManager2 methods.