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

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

Issue 2246233002: [DevTools] Move platform/v8_inspector classes under v8_inspector namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: 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 0c03e7181e7f8570a6ed38f8ebc3fc1644fdf27f..a9d75e4d8812d3d4001fe96ded603c4daef0fcc0 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.h
@@ -39,6 +39,10 @@
#include "wtf/HashMap.h"
#include "wtf/text/WTFString.h"
+namespace v8_inspector {
+class V8InspectorSession;
+}
+
namespace blink {
class Element;
@@ -46,7 +50,6 @@ class Event;
class EventTarget;
class InspectorDOMAgent;
class Node;
-class V8InspectorSession;
namespace protocol {
class DictionaryValue;
@@ -58,7 +61,7 @@ class CORE_EXPORT InspectorDOMDebuggerAgent final
public:
static void eventListenersInfoForTarget(v8::Isolate*, v8::Local<v8::Value>, V8EventListenerInfoList& listeners);
- InspectorDOMDebuggerAgent(v8::Isolate*, InspectorDOMAgent*, V8InspectorSession*);
+ InspectorDOMDebuggerAgent(v8::Isolate*, InspectorDOMAgent*, v8_inspector::V8InspectorSession*);
~InspectorDOMDebuggerAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -114,7 +117,7 @@ private:
v8::Isolate* m_isolate;
Member<InspectorDOMAgent> m_domAgent;
- V8InspectorSession* m_v8Session;
+ v8_inspector::V8InspectorSession* m_v8Session;
HeapHashMap<Member<Node>, uint32_t> m_domBreakpoints;
};

Powered by Google App Engine
This is Rietveld 408576698