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

Side by Side Diff: Source/core/svg/animation/SMILTimeContainer.h

Issue 802143002: AnimationPolicy setting is applied to SVG animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use enum Created 5 years, 11 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 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef SMILTimeContainer_h 26 #ifndef SMILTimeContainer_h
27 #define SMILTimeContainer_h 27 #define SMILTimeContainer_h
28 28
29 #include "core/dom/QualifiedName.h" 29 #include "core/dom/QualifiedName.h"
30 #include "core/svg/animation/SMILTime.h" 30 #include "core/svg/animation/SMILTime.h"
31 #include "platform/Timer.h" 31 #include "platform/Timer.h"
32 #include "platform/graphics/ImageAnimationPolicy.h"
32 #include "platform/heap/Handle.h" 33 #include "platform/heap/Handle.h"
33 #include "wtf/HashMap.h" 34 #include "wtf/HashMap.h"
34 #include "wtf/HashSet.h" 35 #include "wtf/HashSet.h"
35 #include "wtf/PassRefPtr.h" 36 #include "wtf/PassRefPtr.h"
36 #include "wtf/RefCounted.h" 37 #include "wtf/RefCounted.h"
37 #include "wtf/text/StringHash.h" 38 #include "wtf/text/StringHash.h"
38 #include "wtf/text/WTFString.h" 39 #include "wtf/text/WTFString.h"
39 40
40 namespace blink { 41 namespace blink {
41 42
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 // No frame scheduled. 78 // No frame scheduled.
78 Idle, 79 Idle,
79 // Scheduled a wakeup to update the animation values. 80 // Scheduled a wakeup to update the animation values.
80 SynchronizeAnimations, 81 SynchronizeAnimations,
81 // Scheduled a wakeup to trigger an animation frame. 82 // Scheduled a wakeup to trigger an animation frame.
82 FutureAnimationFrame, 83 FutureAnimationFrame,
83 // Scheduled a animation frame for continuous update. 84 // Scheduled a animation frame for continuous update.
84 AnimationFrame 85 AnimationFrame
85 }; 86 };
86 87
88 enum AnimationPolicyOnceAction {
89 // Restart OnceTimer if it's not paused.
fs 2014/12/27 15:36:35 "if it's" -> "if the timeline is"
je_julie(Not used) 2014/12/28 05:50:26 Done.
90 RestartOnceTimerIfNotPaused,
91 // Restart OnceTimer.
92 RestartOnceTimer,
93 // Cancel OnceTimer.
94 CancelOnceTimer
95 };
96
97
87 bool isTimelineRunning() const; 98 bool isTimelineRunning() const;
88 void scheduleAnimationFrame(SMILTime fireTime); 99 void scheduleAnimationFrame(SMILTime fireTime);
89 void cancelAnimationFrame(); 100 void cancelAnimationFrame();
90 void wakeupTimerFired(Timer<SMILTimeContainer>*); 101 void wakeupTimerFired(Timer<SMILTimeContainer>*);
102 void scheduleAnimationPolicyTimer();
103 void cancelAnimationPolicyTimer();
104 void animationPolicyTimerFired(Timer<SMILTimeContainer>*);
105 ImageAnimationPolicy animationPolicy() const;
106 bool handleAnimationPolicy(AnimationPolicyOnceAction);
91 void updateAnimationsAndScheduleFrameIfNeeded(SMILTime elapsed, bool seekToT ime = false); 107 void updateAnimationsAndScheduleFrameIfNeeded(SMILTime elapsed, bool seekToT ime = false);
92 SMILTime updateAnimations(SMILTime elapsed, bool seekToTime = false); 108 SMILTime updateAnimations(SMILTime elapsed, bool seekToTime = false);
93 void serviceOnNextFrame(); 109 void serviceOnNextFrame();
94 void scheduleWakeUp(double delayTime, FrameSchedulingState); 110 void scheduleWakeUp(double delayTime, FrameSchedulingState);
95 bool hasPendingSynchronization() const; 111 bool hasPendingSynchronization() const;
96 112
97 void updateDocumentOrderIndexes(); 113 void updateDocumentOrderIndexes();
98 double lastResumeTime() const { return m_resumeTime ? m_resumeTime : m_begin Time; } 114 double lastResumeTime() const { return m_resumeTime ? m_resumeTime : m_begin Time; }
99 115
100 Document& document() const; 116 Document& document() const;
101 double currentTime() const; 117 double currentTime() const;
102 118
103 double m_beginTime; 119 double m_beginTime;
104 double m_pauseTime; 120 double m_pauseTime;
105 double m_resumeTime; 121 double m_resumeTime;
106 double m_accumulatedActiveTime; 122 double m_accumulatedActiveTime;
107 double m_presetStartTime; 123 double m_presetStartTime;
108 124
109 FrameSchedulingState m_frameSchedulingState; 125 FrameSchedulingState m_frameSchedulingState;
110 bool m_documentOrderIndexesDirty; 126 bool m_documentOrderIndexesDirty;
111 127
112 Timer<SMILTimeContainer> m_wakeupTimer; 128 Timer<SMILTimeContainer> m_wakeupTimer;
129 Timer<SMILTimeContainer> m_animationPolicyOnceTimer;
113 130
114 using ElementAttributePair = pair<RawPtrWillBeWeakMember<SVGElement>, Qualif iedName>; 131 using ElementAttributePair = pair<RawPtrWillBeWeakMember<SVGElement>, Qualif iedName>;
115 using AnimationsLinkedHashSet = WillBeHeapLinkedHashSet<RawPtrWillBeWeakMemb er<SVGSMILElement>>; 132 using AnimationsLinkedHashSet = WillBeHeapLinkedHashSet<RawPtrWillBeWeakMemb er<SVGSMILElement>>;
116 using GroupedAnimationsMap = WillBeHeapHashMap<ElementAttributePair, OwnPtrW illBeMember<AnimationsLinkedHashSet>>; 133 using GroupedAnimationsMap = WillBeHeapHashMap<ElementAttributePair, OwnPtrW illBeMember<AnimationsLinkedHashSet>>;
117 GroupedAnimationsMap m_scheduledAnimations; 134 GroupedAnimationsMap m_scheduledAnimations;
118 135
119 SVGSVGElement& m_ownerSVGElement; 136 SVGSVGElement& m_ownerSVGElement;
120 137
121 #if ENABLE(ASSERT) 138 #if ENABLE(ASSERT)
122 bool m_preventScheduledAnimationsChanges; 139 bool m_preventScheduledAnimationsChanges;
123 #endif 140 #endif
124 }; 141 };
125 } 142 }
126 143
127 #endif // SMILTimeContainer_h 144 #endif // SMILTimeContainer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698