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

Unified Diff: Source/bindings/core/v8/ActiveDOMCallback.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
« no previous file with comments | « no previous file | Source/bindings/core/v8/ScheduledAction.cpp » ('j') | Source/core/workers/WorkerScript.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ActiveDOMCallback.cpp
diff --git a/Source/bindings/core/v8/ActiveDOMCallback.cpp b/Source/bindings/core/v8/ActiveDOMCallback.cpp
index 4d176a78ede6b2efde5acf40666e8c31429d0fa5..24d9b07ac0d4422ac75bbb506dd39e166896b7c8 100644
--- a/Source/bindings/core/v8/ActiveDOMCallback.cpp
+++ b/Source/bindings/core/v8/ActiveDOMCallback.cpp
@@ -56,7 +56,7 @@ bool ActiveDOMCallback::isScriptControllerTerminating() const
{
ExecutionContext* context = executionContext();
if (context && context->isWorkerGlobalScope()) {
- WorkerScriptController* scriptController = toWorkerGlobalScope(context)->script();
+ WorkerScriptController* scriptController = toWorkerGlobalScope(context)->scriptController();
if (!scriptController || scriptController->isExecutionForbidden() || scriptController->isExecutionTerminating())
return true;
}
« no previous file with comments | « no previous file | Source/bindings/core/v8/ScheduledAction.cpp » ('j') | Source/core/workers/WorkerScript.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698