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

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

Issue 1514523004: DevTools: remove V8DebuggerListener and ScriptDebuggerBase abstractions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed. Created 5 years 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/core/inspector/WorkerRuntimeAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp b/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp
index 3557a5436f03ba74fa8292bcfe826293e0d73fd0..6e1c469e093e79cfaa2694e6f1a6c2b708155609 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/WorkerRuntimeAgent.cpp
@@ -62,7 +62,7 @@ void WorkerRuntimeAgent::enable(ErrorString* errorString)
InspectorRuntimeAgent::enable(errorString);
ScriptState* scriptState = m_workerGlobalScope->script()->scriptState();
int executionContextId = injectedScriptManager()->injectedScriptIdFor(scriptState);
- addExecutionContextToFrontend(executionContextId, "", m_workerGlobalScope->url(), "", "");
+ reportExecutionContextCreated(executionContextId, "", m_workerGlobalScope->url(), "", "");
}
ScriptState* WorkerRuntimeAgent::defaultScriptState()

Powered by Google App Engine
This is Rietveld 408576698