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

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: Created 5 years, 12 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 the timeline is not paused.
90 RestartOnceTimerIfNotPaused,
91 // Restart OnceTimer.
92 RestartOnceTimer,
93 // Cancel OnceTimer.
94 CancelOnceTimer
95 };
96
87 bool isTimelineRunning() const; 97 bool isTimelineRunning() const;
88 void scheduleAnimationFrame(SMILTime fireTime); 98 void scheduleAnimationFrame(SMILTime fireTime);
89 void cancelAnimationFrame(); 99 void cancelAnimationFrame();
90 void wakeupTimerFired(Timer<SMILTimeContainer>*); 100 void wakeupTimerFired(Timer<SMILTimeContainer>*);
101 void scheduleAnimationPolicyTimer();
102 void cancelAnimationPolicyTimer();
103 void animationPolicyTimerFired(Timer<SMILTimeContainer>*);
104 ImageAnimationPolicy animationPolicy() const;
105 bool handleAnimationPolicy(AnimationPolicyOnceAction);
91 void updateAnimationsAndScheduleFrameIfNeeded(SMILTime elapsed, bool seekToT ime = false); 106 void updateAnimationsAndScheduleFrameIfNeeded(SMILTime elapsed, bool seekToT ime = false);
92 SMILTime updateAnimations(SMILTime elapsed, bool seekToTime = false); 107 SMILTime updateAnimations(SMILTime elapsed, bool seekToTime = false);
93 void serviceOnNextFrame(); 108 void serviceOnNextFrame();
94 void scheduleWakeUp(double delayTime, FrameSchedulingState); 109 void scheduleWakeUp(double delayTime, FrameSchedulingState);
95 bool hasPendingSynchronization() const; 110 bool hasPendingSynchronization() const;
96 111
97 void updateDocumentOrderIndexes(); 112 void updateDocumentOrderIndexes();
98 double lastResumeTime() const { return m_resumeTime ? m_resumeTime : m_begin Time; } 113 double lastResumeTime() const { return m_resumeTime ? m_resumeTime : m_begin Time; }
99 114
100 Document& document() const; 115 Document& document() const;
101 double currentTime() const; 116 double currentTime() const;
102 117
103 double m_beginTime; 118 double m_beginTime;
104 double m_pauseTime; 119 double m_pauseTime;
105 double m_resumeTime; 120 double m_resumeTime;
106 double m_accumulatedActiveTime; 121 double m_accumulatedActiveTime;
107 double m_presetStartTime; 122 double m_presetStartTime;
108 123
109 FrameSchedulingState m_frameSchedulingState; 124 FrameSchedulingState m_frameSchedulingState;
110 bool m_documentOrderIndexesDirty; 125 bool m_documentOrderIndexesDirty;
111 126
112 Timer<SMILTimeContainer> m_wakeupTimer; 127 Timer<SMILTimeContainer> m_wakeupTimer;
128 Timer<SMILTimeContainer> m_animationPolicyOnceTimer;
113 129
114 using ElementAttributePair = pair<RawPtrWillBeWeakMember<SVGElement>, Qualif iedName>; 130 using ElementAttributePair = pair<RawPtrWillBeWeakMember<SVGElement>, Qualif iedName>;
115 using AnimationsLinkedHashSet = WillBeHeapLinkedHashSet<RawPtrWillBeWeakMemb er<SVGSMILElement>>; 131 using AnimationsLinkedHashSet = WillBeHeapLinkedHashSet<RawPtrWillBeWeakMemb er<SVGSMILElement>>;
116 using GroupedAnimationsMap = WillBeHeapHashMap<ElementAttributePair, OwnPtrW illBeMember<AnimationsLinkedHashSet>>; 132 using GroupedAnimationsMap = WillBeHeapHashMap<ElementAttributePair, OwnPtrW illBeMember<AnimationsLinkedHashSet>>;
117 GroupedAnimationsMap m_scheduledAnimations; 133 GroupedAnimationsMap m_scheduledAnimations;
118 134
119 SVGSVGElement& m_ownerSVGElement; 135 SVGSVGElement& m_ownerSVGElement;
120 136
121 #if ENABLE(ASSERT) 137 #if ENABLE(ASSERT)
122 bool m_preventScheduledAnimationsChanges; 138 bool m_preventScheduledAnimationsChanges;
123 #endif 139 #endif
124 }; 140 };
125 } 141 }
126 142
127 #endif // SMILTimeContainer_h 143 #endif // SMILTimeContainer_h
OLDNEW
« no previous file with comments | « LayoutTests/svg/animations/svg-animation-policy-once-expected.txt ('k') | Source/core/svg/animation/SMILTimeContainer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698