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

Side by Side Diff: third_party/WebKit/Source/core/inspector/InspectorAnimationAgent.h

Issue 2295913003: [DevTools] Switch from platform/v8_inspector to v8/v8-inspector.h. (Closed)
Patch Set: rebase Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef InspectorAnimationAgent_h 5 #ifndef InspectorAnimationAgent_h
6 #define InspectorAnimationAgent_h 6 #define InspectorAnimationAgent_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/animation/Animation.h" 9 #include "core/animation/Animation.h"
10 #include "core/css/CSSKeyframesRule.h" 10 #include "core/css/CSSKeyframesRule.h"
11 #include "core/inspector/InspectorBaseAgent.h" 11 #include "core/inspector/InspectorBaseAgent.h"
12 #include "core/inspector/protocol/Animation.h" 12 #include "core/inspector/protocol/Animation.h"
13 #include "wtf/text/WTFString.h" 13 #include "wtf/text/WTFString.h"
14 14
15 namespace v8_inspector { 15 #include <v8-inspector.h>
16 class V8InspectorSession;
17 }
18 16
19 namespace blink { 17 namespace blink {
20 18
21 class AnimationNode; 19 class AnimationNode;
22 class AnimationTimeline; 20 class AnimationTimeline;
23 class Element; 21 class Element;
24 class InspectedFrames; 22 class InspectedFrames;
25 class InspectorCSSAgent; 23 class InspectorCSSAgent;
26 class InspectorDOMAgent; 24 class InspectorDOMAgent;
27 class TimingFunction; 25 class TimingFunction;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 HeapHashMap<String, Member<blink::Animation>> m_idToAnimation; 72 HeapHashMap<String, Member<blink::Animation>> m_idToAnimation;
75 HeapHashMap<String, Member<blink::Animation>> m_idToAnimationClone; 73 HeapHashMap<String, Member<blink::Animation>> m_idToAnimationClone;
76 HashMap<String, String> m_idToAnimationType; 74 HashMap<String, String> m_idToAnimationType;
77 bool m_isCloning; 75 bool m_isCloning;
78 HashSet<String> m_clearedAnimations; 76 HashSet<String> m_clearedAnimations;
79 }; 77 };
80 78
81 } // namespace blink 79 } // namespace blink
82 80
83 #endif // InspectorAnimationAgent_h 81 #endif // InspectorAnimationAgent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698