diff options
Diffstat (limited to 'webkit/plugins/ppapi/plugin_module.h')
-rw-r--r-- | webkit/plugins/ppapi/plugin_module.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/webkit/plugins/ppapi/plugin_module.h b/webkit/plugins/ppapi/plugin_module.h index 7634268..928f8ac 100644 --- a/webkit/plugins/ppapi/plugin_module.h +++ b/webkit/plugins/ppapi/plugin_module.h @@ -141,9 +141,6 @@ class WEBKIT_PLUGINS_EXPORT PluginModule : void SetBroker(PluginDelegate::PpapiBroker* broker); PluginDelegate::PpapiBroker* GetBroker(); - // Retrieves the forwarding interface used for talking to WebKit. - ::ppapi::WebKitForwarding* GetWebKitForwarding(); - private: // Calls the InitializeModule entrypoint. The entrypoint must have been // set and the plugin must not be out of process (we don't maintain @@ -196,9 +193,6 @@ class WEBKIT_PLUGINS_EXPORT PluginModule : PP_Bool (*reserve_instance_id_)(PP_Module, PP_Instance); - // Lazily created by GetWebKitForwarding. - scoped_ptr< ::ppapi::WebKitForwarding> webkit_forwarding_; - DISALLOW_COPY_AND_ASSIGN(PluginModule); }; |