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 ccbc66302ee66277c853736ade0b38353556031f..d262de86ce24f8a7fd92129a7fb933819c02dfdc 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/V8WorkerGlobalScopeEventListener.cpp |
@@ -32,13 +32,13 @@ |
#include "bindings/core/v8/V8WorkerGlobalScopeEventListener.h" |
+#include "bindings/core/v8/GlobalScopeScriptController.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" |
@@ -56,7 +56,7 @@ void V8WorkerGlobalScopeEventListener::handleEvent(ScriptState* scriptState, Eve |
// See issue 889829. |
RefPtrWillBeRawPtr<V8AbstractEventListener> protect(this); |
- WorkerScriptController* script = toWorkerGlobalScope(scriptState->executionContext())->script(); |
+ GlobalScopeScriptController* script = toWorkerGlobalScope(scriptState->executionContext())->script(); |
if (!script) |
return; |