Bug 777796 - Remove PluginPRLibrary::mNPP_GetValue; r=josh

This commit is contained in:
Ehsan Akhgari 2012-07-26 17:54:11 -04:00
parent 0094db9c19
commit a832fde353
2 changed files with 0 additions and 3 deletions

View File

@ -48,7 +48,6 @@ PluginPRLibrary::NP_Initialize(NPNetscapeFuncs* bFuncs,
// Save pointers to functions that get called through PluginLibrary itself.
mNPP_New = pFuncs->newp;
mNPP_GetValue = pFuncs->getvalue;
mNPP_ClearSiteData = pFuncs->clearsitedata;
mNPP_GetSitesWithData = pFuncs->getsiteswithdata;
return NS_OK;

View File

@ -31,7 +31,6 @@ public:
mNP_GetEntryPoints(nsnull),
#endif
mNPP_New(nsnull),
mNPP_GetValue(nsnull),
mNPP_ClearSiteData(nsnull),
mNPP_GetSitesWithData(nsnull),
mLibrary(aLibrary),
@ -139,7 +138,6 @@ private:
NP_GetEntryPointsFunc mNP_GetEntryPoints;
#endif
NPP_NewProcPtr mNPP_New;
NPP_GetValueProcPtr mNPP_GetValue;
NPP_ClearSiteDataPtr mNPP_ClearSiteData;
NPP_GetSitesWithDataPtr mNPP_GetSitesWithData;
PRLibrary* mLibrary;