Chromium Code Reviews

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

Issue 667583003: Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/We… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git/+/master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/bindings/core/v8/V8NPUtils.cpp ('k') | Source/bindings/core/v8/custom/V8WindowCustom.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/WorkerScriptDebugServer.cpp
diff --git a/Source/bindings/core/v8/WorkerScriptDebugServer.cpp b/Source/bindings/core/v8/WorkerScriptDebugServer.cpp
index de9ea7334b1478279eda9a91e97fd8ac44277b01..006fb8fd7ef24a4f09bc63bcdb10e1f45b201250 100644
--- a/Source/bindings/core/v8/WorkerScriptDebugServer.cpp
+++ b/Source/bindings/core/v8/WorkerScriptDebugServer.cpp
@@ -86,7 +86,7 @@ void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener)
void WorkerScriptDebugServer::interruptAndRunTask(PassOwnPtr<Task> task)
{
- interruptAndRun(task, m_isolate);
+ interruptAndRun(m_isolate, task);
}
ScriptDebugListener* WorkerScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context>)
« no previous file with comments | « Source/bindings/core/v8/V8NPUtils.cpp ('k') | Source/bindings/core/v8/custom/V8WindowCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine