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

Unified Diff: Source/core/inspector/PerIsolateDebuggerClient.cpp

Issue 1128273005: Devtools: Move runMessageLoopOnPause and other methods on ScriptDebugServer::Client (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove empty line 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/core/inspector/PerIsolateDebuggerClient.cpp
diff --git a/Source/core/inspector/PerIsolateDebuggerClient.cpp b/Source/core/inspector/PerIsolateDebuggerClient.cpp
index 4d539dbd3d5903bd344363728ab1e11eca97ae62..b87fb8286ac8cc0b77952ddf192d6a9330e8b7f1 100644
--- a/Source/core/inspector/PerIsolateDebuggerClient.cpp
+++ b/Source/core/inspector/PerIsolateDebuggerClient.cpp
@@ -12,7 +12,9 @@
namespace blink {
-PerIsolateDebuggerClient::PerIsolateDebuggerClient(v8::Isolate* isolate) : m_isolate(isolate)
+PerIsolateDebuggerClient::PerIsolateDebuggerClient(v8::Isolate* isolate, PassOwnPtr<ScriptDebugServer> scriptDebugServer)
+ : m_isolate(isolate)
+ , m_scriptDebugServer(scriptDebugServer)
{
}

Powered by Google App Engine
This is Rietveld 408576698