| Index: content/child/npapi/plugin_instance.cc
|
| diff --git a/content/child/npapi/plugin_instance.cc b/content/child/npapi/plugin_instance.cc
|
| index 3e9808e9d444cf4a2da5703f8c2e4eed8601402c..da53c91167d9c13bbb00fd868104f0e5b49a994a 100644
|
| --- a/content/child/npapi/plugin_instance.cc
|
| +++ b/content/child/npapi/plugin_instance.cc
|
| @@ -89,14 +89,6 @@ bool PluginInstance::Start(const GURL& url,
|
| return err == NPERR_NO_ERROR;
|
| }
|
|
|
| -NPObject *PluginInstance::GetPluginScriptableObject() {
|
| - NPObject *value = NULL;
|
| - NPError error = NPP_GetValue(NPPVpluginScriptableNPObject, &value);
|
| - if (error != NPERR_NO_ERROR || value == NULL)
|
| - return NULL;
|
| - return value;
|
| -}
|
| -
|
| bool PluginInstance::GetFormValue(base::string16* value) {
|
| // Plugins will allocate memory for the return value by using NPN_MemAlloc().
|
| char *plugin_value = NULL;
|
|
|