Chromium Code Reviews

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

Issue 1924663006: [DevTools] Move API methods from V8RuntimeAgent to V8InspectorSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@debugger-into-session
Patch Set: rebased Created 4 years, 8 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/PageConsoleAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp b/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp
index 01eb082e829a67eed05558150da16a05267e1a61..11914660b10d293958631f8d1495dcc0a04c0f9b 100644
--- a/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/PageConsoleAgent.cpp
@@ -45,8 +45,8 @@ namespace blink {
int PageConsoleAgent::s_enabledAgentCount = 0;
-PageConsoleAgent::PageConsoleAgent(V8RuntimeAgent* runtimeAgent, InspectorDOMAgent* domAgent, InspectedFrames* inspectedFrames)
- : InspectorConsoleAgent(runtimeAgent)
+PageConsoleAgent::PageConsoleAgent(V8InspectorSession* v8Session, InspectorDOMAgent* domAgent, InspectedFrames* inspectedFrames)
+ : InspectorConsoleAgent(v8Session)
, m_inspectorDOMAgent(domAgent)
, m_inspectedFrames(inspectedFrames)
{

Powered by Google App Engine