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

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

Issue 1318543009: Oilpan: Partially ship Oilpan for core/animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/ElementRareData.cpp ('k') | 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/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/InspectorFrontend.h" 9 #include "core/InspectorFrontend.h"
10 #include "core/css/CSSKeyframesRule.h" 10 #include "core/css/CSSKeyframesRule.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 typedef TypeBuilder::Animation::Animation::Type::Enum AnimationType; 60 typedef TypeBuilder::Animation::Animation::Type::Enum AnimationType;
61 61
62 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&); 62 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&);
63 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&, AnimationType, PassRefPtr<TypeBuilder::Animation::KeyframesRule> keyframeR ule = nullptr); 63 PassRefPtr<TypeBuilder::Animation::Animation> buildObjectForAnimation(Animat ion&, AnimationType, PassRefPtr<TypeBuilder::Animation::KeyframesRule> keyframeR ule = nullptr);
64 double normalizedStartTime(Animation&); 64 double normalizedStartTime(Animation&);
65 AnimationTimeline& referenceTimeline(); 65 AnimationTimeline& referenceTimeline();
66 66
67 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 67 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
68 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent; 68 RawPtrWillBeMember<InspectorDOMAgent> m_domAgent;
69 WillBeHeapHashMap<String, RefPtrWillBeMember<Animation>> m_idToAnimation; 69 PersistentHeapHashMapWillBeHeapHashMap<String, Member<Animation>> m_idToAnim ation;
70 WillBeHeapHashMap<String, AnimationType> m_idToAnimationType; 70 WillBeHeapHashMap<String, AnimationType> m_idToAnimationType;
71 double m_latestStartTime; 71 double m_latestStartTime;
72 }; 72 };
73 73
74 } 74 }
75 75
76 #endif // InspectorAnimationAgent_h 76 #endif // InspectorAnimationAgent_h
OLDNEW
« no previous file with comments | « Source/core/dom/ElementRareData.cpp ('k') | Source/core/inspector/InspectorAnimationAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698