Fix build bustage.

git-svn-id: svn://10.0.0.236/trunk@74633 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com
2000-07-22 03:59:49 +00:00
parent 396e1c3d7e
commit 34482cc84b

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.