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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerInspectorController.h

Issue 2151273003: [DevTools] Move browser logging from Console domain to Log domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@internals-method
Patch Set: protocol improvements 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/core/inspector/WorkerInspectorController.h
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
index 3e0fcb3006d95b94480f54cdca54325119f66068..845901ebf366d820ee14f34c855520bd38e1102b 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.h
@@ -40,6 +40,7 @@
namespace blink {
+class InspectorLogAgent;
class InstrumentingAgents;
class V8Debugger;
class WorkerGlobalScope;
@@ -71,11 +72,13 @@ private:
// InspectorSession::Client implementation.
void sendProtocolMessage(int sessionId, int callId, const String& response, const String& state) override;
void resumeStartup() override;
+ void consoleCleared() override;
WorkerThreadDebugger* m_debugger;
Member<WorkerGlobalScope> m_workerGlobalScope;
Member<InstrumentingAgents> m_instrumentingAgents;
Member<InspectorSession> m_session;
+ Member<InspectorLogAgent> m_logAgent;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698