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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.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/InspectorAnimationAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.h b/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.h
index 048e2b49f90c3c4e9fbf6fbaeb71435e5ce2f1c3..10e030501c099932f5f45a709459e6059f428b1b 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.h
@@ -12,6 +12,10 @@
#include "core/inspector/protocol/Animation.h"
#include "wtf/text/WTFString.h"
+namespace v8_inspector {
+class V8InspectorSession;
+}
+
namespace blink {
class AnimationNode;
@@ -21,12 +25,11 @@ class InspectedFrames;
class InspectorCSSAgent;
class InspectorDOMAgent;
class TimingFunction;
-class V8InspectorSession;
class CORE_EXPORT InspectorAnimationAgent final : public InspectorBaseAgent<protocol::Animation::Metainfo> {
WTF_MAKE_NONCOPYABLE(InspectorAnimationAgent);
public:
- InspectorAnimationAgent(InspectedFrames*, InspectorDOMAgent*, InspectorCSSAgent*, V8InspectorSession*);
+ InspectorAnimationAgent(InspectedFrames*, InspectorDOMAgent*, InspectorCSSAgent*, v8_inspector::V8InspectorSession*);
// Base agent methods.
void restore() override;
@@ -67,7 +70,7 @@ private:
Member<InspectedFrames> m_inspectedFrames;
Member<InspectorDOMAgent> m_domAgent;
Member<InspectorCSSAgent> m_cssAgent;
- V8InspectorSession* m_v8Session;
+ v8_inspector::V8InspectorSession* m_v8Session;
HeapHashMap<String, Member<blink::Animation>> m_idToAnimation;
HeapHashMap<String, Member<blink::Animation>> m_idToAnimationClone;
HashMap<String, String> m_idToAnimationType;

Powered by Google App Engine
This is Rietveld 408576698