mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Added GetURLWithHeaders to fix build bustage.
This commit is contained in:
parent
36e61368f9
commit
4171f40f95
@ -195,6 +195,17 @@ public:
|
|||||||
|
|
||||||
NS_IMETHOD
|
NS_IMETHOD
|
||||||
UnregisterPlugin(REFNSIID aCID);
|
UnregisterPlugin(REFNSIID aCID);
|
||||||
|
|
||||||
|
NS_IMETHOD
|
||||||
|
GetURLWithHeaders(nsISupports* pluginInst,
|
||||||
|
const char* url,
|
||||||
|
const char* target = NULL,
|
||||||
|
nsIPluginStreamListener* streamListener = NULL,
|
||||||
|
const char* altHost = NULL,
|
||||||
|
const char* referrer = NULL,
|
||||||
|
PRBool forceJSEnabled = PR_FALSE,
|
||||||
|
PRUint32 getHeadersLength = 0,
|
||||||
|
const char* getHeaders = NULL);
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
@ -1672,7 +1683,19 @@ CPluginManager::UnregisterPlugin(REFNSIID aCID)
|
|||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NS_IMETHODIMP
|
||||||
|
CPluginManager::GetURLWithHeaders(nsISupports* pluginInst,
|
||||||
|
const char* url,
|
||||||
|
const char* target,
|
||||||
|
nsIPluginStreamListener* streamListener,
|
||||||
|
const char* altHost,
|
||||||
|
const char* referrer,
|
||||||
|
PRBool forceJSEnabled,
|
||||||
|
PRUint32 getHeadersLength,
|
||||||
|
const char* getHeaders)
|
||||||
|
{
|
||||||
|
return NS_ERROR_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
//////////////////////////////
|
//////////////////////////////
|
||||||
// nsIPluginManager2 methods.
|
// nsIPluginManager2 methods.
|
||||||
|
Loading…
Reference in New Issue
Block a user