summaryrefslogtreecommitdiffstats
path: root/webkit/glue/plugins
diff options
context:
space:
mode:
authorstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-07 20:14:37 +0000
committerstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-07 20:14:37 +0000
commit1d04a26fafc509178af419f49ea7031855b7835e (patch)
treecc15d3e3c833492fa9cfa65c254de33abd3a3e79 /webkit/glue/plugins
parent9274ead1c74ef0025072923f14aeaedd2598c0d6 (diff)
downloadchromium_src-1d04a26fafc509178af419f49ea7031855b7835e.zip
chromium_src-1d04a26fafc509178af419f49ea7031855b7835e.tar.gz
chromium_src-1d04a26fafc509178af419f49ea7031855b7835e.tar.bz2
Remove the obsolete JRI bits from the NPAPI headers
BUG=42645 TEST=Existing plugin tests continue to pass; nothing should change. Review URL: http://codereview.chromium.org/2011005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46732 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins')
-rw-r--r--webkit/glue/plugins/test/plugin_client.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/webkit/glue/plugins/test/plugin_client.cc b/webkit/glue/plugins/test/plugin_client.cc
index 1cf57e7..d617e16 100644
--- a/webkit/glue/plugins/test/plugin_client.cc
+++ b/webkit/glue/plugins/test/plugin_client.cc
@@ -33,7 +33,7 @@ NPError PluginClient::GetEntryPoints(NPPluginFuncs* pFuncs) {
pFuncs->urlnotify = NPP_URLNotify;
pFuncs->getvalue = NPP_GetValue;
pFuncs->setvalue = NPP_SetValue;
- pFuncs->javaClass = reinterpret_cast<JRIGlobalRef>(NPP_GetJavaClass);
+ pFuncs->javaClass = NULL;
return NPERR_NO_ERROR;
}
@@ -227,9 +227,4 @@ int16 NPP_HandleEvent(NPP instance, void* event) {
return plugin->HandleEvent(event);
}
-
-void* NPP_GetJavaClass(void) {
- // XXXMB - do work here.
- return NULL;
-}
} // extern "C"