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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp

Issue 2179683002: [DevTools] Cleanup v8_inspector API part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: breakDetails Created 4 years, 5 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: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
index c9a235ae29e5fd1fdaa3176f9aff9cfab7102c84..78749bce5c23257ba3548241a3d59fb35675d1da 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.cpp
@@ -369,7 +369,7 @@ void V8RuntimeAgentImpl::enable(ErrorString* errorString)
{
if (m_enabled)
return;
- m_session->client()->runtimeEnabled();
+ m_debugger->client()->beginEnsureAllContextsInGroup(m_session->contextGroupId());
m_enabled = true;
m_state->setBoolean(V8RuntimeAgentImplState::runtimeEnabled, true);
m_session->debugger()->enableStackCapturingIfNeeded();
@@ -388,7 +388,7 @@ void V8RuntimeAgentImpl::disable(ErrorString* errorString)
m_session->debugger()->disableStackCapturingIfNeeded();
m_session->discardInjectedScripts();
reset();
- m_session->client()->runtimeDisabled();
+ m_debugger->client()->endEnsureAllContextsInGroup(m_session->contextGroupId());
}
void V8RuntimeAgentImpl::reset()

Powered by Google App Engine
This is Rietveld 408576698