зеркало из https://github.com/mozilla/gecko-dev.git
Added GetURLWithHeaders to fix build bustage.
This commit is contained in:
Родитель
36e61368f9
Коммит
4171f40f95
|
@ -196,6 +196,17 @@ public:
|
|||
NS_IMETHOD
|
||||
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);
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// from nsIPluginManager2:
|
||||
|
@ -1672,7 +1683,19 @@ CPluginManager::UnregisterPlugin(REFNSIID aCID)
|
|||
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.
|
||||
|
|
Загрузка…
Ссылка в новой задаче