Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Unified Diff: Source/bindings/core/v8/V8AbstractEventListener.cpp

Issue 1115923002: workers: Rename WorkerThread to WorkerScript. Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/core/v8/V8AbstractEventListener.cpp
diff --git a/Source/bindings/core/v8/V8AbstractEventListener.cpp b/Source/bindings/core/v8/V8AbstractEventListener.cpp
index 058ec36295b1fe8f8b26ed040a9b8c57adc0c85a..96daf47d2a143864a42c2343ca8bf642b7b826a5 100644
--- a/Source/bindings/core/v8/V8AbstractEventListener.cpp
+++ b/Source/bindings/core/v8/V8AbstractEventListener.cpp
@@ -128,7 +128,7 @@ void V8AbstractEventListener::invokeEventHandler(ScriptState* scriptState, Event
if (!tryCatch.CanContinue()) { // Result of TerminateExecution().
if (scriptState->executionContext()->isWorkerGlobalScope())
- toWorkerGlobalScope(scriptState->executionContext())->script()->forbidExecution();
+ toWorkerGlobalScope(scriptState->executionContext())->scriptController()->forbidExecution();
return;
}
tryCatch.Reset();

Powered by Google App Engine
This is Rietveld 408576698