| Index: third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp b/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| index 3b8db4b472ca65373231bbd5317520ac3113c3a2..cb07fe7086d6ad7c493d513c70057e689abcda84 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp
|
| @@ -30,13 +30,13 @@
|
|
|
| #include "bindings/core/v8/V8WorkerGlobalScopeEventListener.h"
|
|
|
| +#include "bindings/core/v8/IsolatedScriptController.h"
|
| #include "bindings/core/v8/V8Binding.h"
|
| #include "bindings/core/v8/V8DOMWrapper.h"
|
| #include "bindings/core/v8/V8Event.h"
|
| #include "bindings/core/v8/V8EventTarget.h"
|
| #include "bindings/core/v8/V8GCController.h"
|
| #include "bindings/core/v8/V8ScriptRunner.h"
|
| -#include "bindings/core/v8/WorkerScriptController.h"
|
| #include "core/inspector/InspectorInstrumentation.h"
|
| #include "core/inspector/InspectorTraceEvents.h"
|
| #include "core/workers/WorkerGlobalScope.h"
|
| @@ -54,7 +54,7 @@ void V8WorkerGlobalScopeEventListener::handleEvent(ScriptState* scriptState, Eve
|
| // See issue 889829.
|
| RefPtrWillBeRawPtr<V8AbstractEventListener> protect(this);
|
|
|
| - WorkerScriptController* script = toWorkerGlobalScope(scriptState->executionContext())->script();
|
| + IsolatedScriptController* script = toWorkerGlobalScope(scriptState->executionContext())->script();
|
| if (!script)
|
| return;
|
|
|
|
|