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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDOMAgent.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/InspectorDOMAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h b/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
index ef8b36b52c0dbf516dbe0830d1a3d35ae1552596..d23287bccfc5adee8083bdfcd6eb9b336602cae9 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorDOMAgent.h
@@ -95,7 +95,7 @@ public:
static bool getPseudoElementType(PseudoId, String*);
static ShadowRoot* userAgentShadowRoot(Node*);
- InspectorDOMAgent(v8::Isolate*, InspectedFrames*, V8InspectorSession*, Client*);
+ InspectorDOMAgent(v8::Isolate*, InspectedFrames*, v8_inspector::V8InspectorSession*, Client*);
~InspectorDOMAgent() override;
DECLARE_VIRTUAL_TRACE();
@@ -233,7 +233,7 @@ private:
v8::Isolate* m_isolate;
Member<InspectedFrames> m_inspectedFrames;
- V8InspectorSession* m_v8Session;
+ v8_inspector::V8InspectorSession* m_v8Session;
Client* m_client;
Member<DOMListener> m_domListener;
Member<NodeToIdMap> m_documentNodeToIdMap;

Powered by Google App Engine
This is Rietveld 408576698