diff options
author | Derek Sollenberger <djsollen@google.com> | 2009-11-24 15:05:24 -0500 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2009-11-30 10:39:22 -0500 |
commit | 1a15528b92bc6af8faeaad983c380fcca4d1de44 (patch) | |
tree | f8238f73ea86fde4637bd233c41d3d9550bfc37a /WebCore/plugins | |
parent | ff2e3e9f1bdd1f49652c92473824e3a46c46e575 (diff) | |
download | external_webkit-1a15528b92bc6af8faeaad983c380fcca4d1de44.zip external_webkit-1a15528b92bc6af8faeaad983c380fcca4d1de44.tar.gz external_webkit-1a15528b92bc6af8faeaad983c380fcca4d1de44.tar.bz2 |
Refactoring plugins to use new java interfaces.
This change contains extensive cleanup as we now keep track of a pointer
to the plugin's java entry point (WebkitPlugin.class). Also given that we
track this object and changes to plugin packaging we nolonger need to pass
additional parameters in quite a few methods.
Diffstat (limited to 'WebCore/plugins')
-rw-r--r-- | WebCore/plugins/android/PluginViewAndroid.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/WebCore/plugins/android/PluginViewAndroid.cpp b/WebCore/plugins/android/PluginViewAndroid.cpp index 3fea59d..08ac7c8 100644 --- a/WebCore/plugins/android/PluginViewAndroid.cpp +++ b/WebCore/plugins/android/PluginViewAndroid.cpp @@ -479,12 +479,6 @@ NPError PluginView::platformSetValue(NPPVariable variable, void* value) NPError error = NPERR_GENERIC_ERROR; switch (variable) { - case kSetPluginStubJavaClassName_ANPSetValue: { - char* className = reinterpret_cast<char*>(value); - if (m_window->setPluginStubJavaClassName(className)) - error = NPERR_NO_ERROR; - break; - } case kRequestDrawingModel_ANPSetValue: { ANPDrawingModel model = reinterpret_cast<ANPDrawingModel>(value); if (m_window->setDrawingModel(model)) |