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

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

Issue 1137833004: Devtools Animations: Update timeline reset condition (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/inspector/InspectorAnimationAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/InspectorFrontend.h" 8 #include "core/InspectorFrontend.h"
9 #include "core/css/CSSKeyframesRule.h" 9 #include "core/css/CSSKeyframesRule.h"
10 #include "core/inspector/InspectorBaseAgent.h" 10 #include "core/inspector/InspectorBaseAgent.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 PassRefPtr<TypeBuilder::Animation::AnimationPlayer> buildObjectForAnimationP layer(Animation&); 62 PassRefPtr<TypeBuilder::Animation::AnimationPlayer> buildObjectForAnimationP layer(Animation&);
63 PassRefPtr<TypeBuilder::Animation::AnimationPlayer> buildObjectForAnimationP layer(Animation&, AnimationType, PassRefPtr<TypeBuilder::Animation::KeyframesRul e> keyframeRule = nullptr); 63 PassRefPtr<TypeBuilder::Animation::AnimationPlayer> buildObjectForAnimationP layer(Animation&, AnimationType, PassRefPtr<TypeBuilder::Animation::KeyframesRul e> keyframeRule = nullptr);
64 PassRefPtr<TypeBuilder::Array<TypeBuilder::Animation::AnimationPlayer>> buil dArrayForAnimations(Element&, const WillBeHeapVector<RefPtrWillBeMember<Animatio n>>); 64 PassRefPtr<TypeBuilder::Array<TypeBuilder::Animation::AnimationPlayer>> buil dArrayForAnimations(Element&, const WillBeHeapVector<RefPtrWillBeMember<Animatio n>>);
65 double normalizedStartTime(Animation&); 65 double normalizedStartTime(Animation&);
66 AnimationTimeline& referenceTimeline(); 66 AnimationTimeline& referenceTimeline();
67 67
68 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 68 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
69 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 69 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
70 WillBeHeapHashMap<String, RefPtrWillBeMember<Animation>> m_idToAnimation; 70 WillBeHeapHashMap<String, RefPtrWillBeMember<Animation>> m_idToAnimation;
71 WillBeHeapHashMap<String, AnimationType> m_idToAnimationType; 71 WillBeHeapHashMap<String, AnimationType> m_idToAnimationType;
72 double m_latestStartTime;
72 }; 73 };
73 74
74 } 75 }
75 76
76 #endif // InspectorAnimationAgent_h 77 #endif // InspectorAnimationAgent_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorAnimationAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698