Added GetURLWithHeaders to fix build bustage.

This commit is contained in:
beard%netscape.com 2000-09-15 01:32:30 +00:00
parent 36e61368f9
commit 4171f40f95

View File

@ -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.