mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Fix build bustage.
This commit is contained in:
parent
f364059419
commit
76763f79d2
@ -184,6 +184,19 @@ public:
|
||||
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.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user