| Index: content/renderer/pepper/pepper_plugin_instance_impl.cc
|
| diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.cc b/content/renderer/pepper/pepper_plugin_instance_impl.cc
|
| index 9282fcb1b67fc51f476ebc57a4e69509512de267..7c20742329a504bee97a4b62d978fa3067643824 100644
|
| --- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
|
| +++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
|
| @@ -2670,10 +2670,6 @@ NPP PepperPluginInstanceImpl::instanceNPP() {
|
| return npp_.get();
|
| }
|
|
|
| -v8::Isolate* PepperPluginInstanceImpl::GetIsolate() const {
|
| - return isolate_;
|
| -}
|
| -
|
| PepperPluginInstance* PepperPluginInstance::Get(PP_Instance instance_id) {
|
| return HostGlobals::Get()->GetInstance(instance_id);
|
| }
|
| @@ -2686,6 +2682,10 @@ WebKit::WebPluginContainer* PepperPluginInstanceImpl::GetContainer() {
|
| return container_;
|
| }
|
|
|
| +v8::Isolate* PepperPluginInstanceImpl::GetIsolate() const {
|
| + return isolate_;
|
| +}
|
| +
|
| ppapi::VarTracker* PepperPluginInstanceImpl::GetVarTracker() {
|
| return HostGlobals::Get()->GetVarTracker();
|
| }
|
|
|