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

Unified Diff: Source/core/inspector/WorkerDebuggerAgent.h

Issue 1291613002: DevTools: make V8DebuggerAgent call Client instead of overriden methods (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changed Client to only return defaultInjectedScript Created 5 years, 4 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/WorkerDebuggerAgent.h
diff --git a/Source/core/inspector/WorkerDebuggerAgent.h b/Source/core/inspector/WorkerDebuggerAgent.h
index 4b60f43813a7c6fe01e5b1e780140f2ed0b3b810..f32860a4427ebbd5a14ff8b1e58399c9112ffa7f 100644
--- a/Source/core/inspector/WorkerDebuggerAgent.h
+++ b/Source/core/inspector/WorkerDebuggerAgent.h
@@ -50,9 +50,10 @@ public:
private:
WorkerDebuggerAgent(WorkerThreadDebugger*, WorkerGlobalScope*, InjectedScriptManager*);
+ // V8DebuggerAgent::Client implemntation.
void startListeningV8Debugger() override;
void stopListeningV8Debugger() override;
- InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
+ InjectedScript defaultInjectedScript() override;
void muteConsole() override;
void unmuteConsole() override;

Powered by Google App Engine
This is Rietveld 408576698