| 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 eee322277be17d9d8a79406c590315576978b5a9..40cfb758e2fdfde19e17a168b35685ebc8ea36a7 100644
|
| --- a/content/renderer/pepper/pepper_plugin_instance_impl.cc
|
| +++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc
|
| @@ -101,7 +101,6 @@
|
| #include "third_party/WebKit/public/platform/WebURL.h"
|
| #include "third_party/WebKit/public/platform/WebURLError.h"
|
| #include "third_party/WebKit/public/platform/WebURLRequest.h"
|
| -#include "third_party/WebKit/public/web/WebBindings.h"
|
| #include "third_party/WebKit/public/web/WebCompositionUnderline.h"
|
| #include "third_party/WebKit/public/web/WebDataSource.h"
|
| #include "third_party/WebKit/public/web/WebDocument.h"
|
| @@ -148,7 +147,6 @@ using ppapi::thunk::PPB_ImageData_API;
|
| using ppapi::Var;
|
| using ppapi::ArrayBufferVar;
|
| using ppapi::ViewData;
|
| -using blink::WebBindings;
|
| using blink::WebCanvas;
|
| using blink::WebCursorInfo;
|
| using blink::WebDocument;
|
| @@ -2330,8 +2328,8 @@ PP_Var PepperPluginInstanceImpl::ExecuteScript(PP_Instance instance,
|
| RecordFlashJavaScriptUse();
|
|
|
| // Executing the script may remove the plugin from the DOM, so we need to keep
|
| - // a reference to ourselves so that we can still process the result after the
|
| - // WebBindings::evaluate() below.
|
| + // a reference to ourselves so that we can still process the result after
|
| + // running the script below.
|
| scoped_refptr<PepperPluginInstanceImpl> ref(this);
|
| V8VarConverter converter(pp_instance_, V8VarConverter::kAllowObjectVars);
|
| PepperTryCatchVar try_catch(this, &converter, exception);
|
|
|