| OLD | NEW |
| 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" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 AnimationTimeline& referenceTimeline(); | 68 AnimationTimeline& referenceTimeline(); |
| 69 blink::Animation* animationClone(blink::Animation*); | 69 blink::Animation* animationClone(blink::Animation*); |
| 70 String createCSSId(blink::Animation&); | 70 String createCSSId(blink::Animation&); |
| 71 | 71 |
| 72 Member<InspectedFrames> m_inspectedFrames; | 72 Member<InspectedFrames> m_inspectedFrames; |
| 73 Member<InspectorDOMAgent> m_domAgent; | 73 Member<InspectorDOMAgent> m_domAgent; |
| 74 Member<InspectorCSSAgent> m_cssAgent; | 74 Member<InspectorCSSAgent> m_cssAgent; |
| 75 V8RuntimeAgent* m_runtimeAgent; | 75 V8RuntimeAgent* m_runtimeAgent; |
| 76 HeapHashMap<String, Member<blink::Animation>> m_idToAnimation; | 76 HeapHashMap<String, Member<blink::Animation>> m_idToAnimation; |
| 77 HeapHashMap<String, Member<blink::Animation>> m_idToAnimationClone; | 77 HeapHashMap<String, Member<blink::Animation>> m_idToAnimationClone; |
| 78 HeapHashMap<String, String> m_idToAnimationType; | 78 HashMap<String, String> m_idToAnimationType; |
| 79 bool m_isCloning; | 79 bool m_isCloning; |
| 80 HashSet<String> m_clearedAnimations; | 80 HashSet<String> m_clearedAnimations; |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 } // namespace blink | 83 } // namespace blink |
| 84 | 84 |
| 85 #endif // InspectorAnimationAgent_h | 85 #endif // InspectorAnimationAgent_h |
| OLD | NEW |