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

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

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. 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/InspectorDOMDebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h
index 82ff766b7a7e37f7f3e78661195fff959c42a6d5..45827138f8fff17ef306b1f2515223b33338c445 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h
@@ -48,7 +48,6 @@ class EventTarget;
class InspectorDOMAgent;
class Node;
class V8InspectorSession;
-class V8RuntimeAgent;
namespace protocol {
class DictionaryValue;
@@ -61,7 +60,7 @@ class CORE_EXPORT InspectorDOMDebuggerAgent final
public:
static void eventListenersInfoForTarget(v8::Isolate*, v8::Local<v8::Value>, V8EventListenerInfoList& listeners);
- InspectorDOMDebuggerAgent(v8::Isolate*, InspectorDOMAgent*, V8RuntimeAgent*, V8InspectorSession*);
+ InspectorDOMDebuggerAgent(v8::Isolate*, InspectorDOMAgent*, V8InspectorSession*);
~InspectorDOMDebuggerAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -116,7 +115,6 @@ private:
v8::Isolate* m_isolate;
Member<InspectorDOMAgent> m_domAgent;
- V8RuntimeAgent* m_runtimeAgent;
V8InspectorSession* m_v8Session;
HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints;
};

Powered by Google App Engine
This is Rietveld 408576698