Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp

Issue 1679133002: [DevTools] Remove isRunRequired, replace autoConnectToWorkers with setWaitForDebuggerOnStart. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined tests Created 4 years, 10 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
Index: third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp
index b628278b6d801957b2bf2307295e22c5a8766a97..a45ac68a149aa12fa67ac35a2b3a05f1372cd2b3 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorRuntimeAgent.cpp
@@ -137,11 +137,6 @@ void InspectorRuntimeAgent::run(ErrorString* errorString)
m_client->resumeStartup();
}
-void InspectorRuntimeAgent::isRunRequired(ErrorString* errorString, bool* outResult)
-{
- *outResult = m_client->isRunRequired();
-}
-
void InspectorRuntimeAgent::setCustomObjectFormatterEnabled(ErrorString* errorString, bool enabled)
{
m_v8RuntimeAgent->setCustomObjectFormatterEnabled(errorString, enabled);

Powered by Google App Engine