OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef AnimationClock_h | 31 #ifndef AnimationClock_h |
32 #define AnimationClock_h | 32 #define AnimationClock_h |
33 | 33 |
34 #include <limits> | |
35 #include "wtf/CurrentTime.h" | 34 #include "wtf/CurrentTime.h" |
36 #include "wtf/PassOwnPtr.h" | 35 #include "wtf/PassOwnPtr.h" |
37 #include "wtf/Noncopyable.h" | |
38 | 36 |
39 namespace WebCore { | 37 namespace WebCore { |
40 | 38 |
| 39 // FIXME: This value is used to suppress updates when time is required outside o
f a frame. |
| 40 // The purpose of allowing the clock to update during such periods is to allow a
nimations |
| 41 // to have an appropriate start time and for getComputedStyle to attempt to catc
h-up to a |
| 42 // compositor animation. However a more accurate system might be to attempt to p
hase-lock |
| 43 // with the frame clock. |
| 44 const double minTimeBeforeUnsynchronizedAnimationClockTick = 0.005; |
| 45 |
41 class AnimationClock { | 46 class AnimationClock { |
42 WTF_MAKE_NONCOPYABLE(AnimationClock); | |
43 public: | 47 public: |
44 explicit AnimationClock(WTF::TimeFunction monotonicallyIncreasingTime = WTF:
:monotonicallyIncreasingTime) | 48 static PassOwnPtr<AnimationClock> create(WTF::TimeFunction monotonicallyIncr
easingTime = WTF::monotonicallyIncreasingTime) |
45 : m_monotonicallyIncreasingTime(monotonicallyIncreasingTime) | |
46 , m_time(0) | |
47 , m_currentTask(std::numeric_limits<unsigned>::max()) | |
48 { | 49 { |
| 50 return adoptPtr(new AnimationClock(monotonicallyIncreasingTime)); |
49 } | 51 } |
50 | 52 |
51 void updateTime(double time); | 53 void updateTime(double time); |
52 double currentTime(); | 54 double currentTime(); |
53 void resetTimeForTesting(); | 55 void unfreeze() { m_frozen = false; } |
54 | 56 void resetTimeForTesting() { m_time = 0; m_frozen = true; } |
55 static void notifyTaskStart() { ++s_currentTask; } | |
56 | 57 |
57 private: | 58 private: |
| 59 AnimationClock(WTF::TimeFunction monotonicallyIncreasingTime) |
| 60 : m_monotonicallyIncreasingTime(monotonicallyIncreasingTime) |
| 61 , m_time(0) |
| 62 , m_frozen(false) |
| 63 { |
| 64 } |
58 WTF::TimeFunction m_monotonicallyIncreasingTime; | 65 WTF::TimeFunction m_monotonicallyIncreasingTime; |
59 double m_time; | 66 double m_time; |
60 unsigned m_currentTask; | 67 bool m_frozen; |
61 static unsigned s_currentTask; | |
62 }; | 68 }; |
63 | 69 |
64 } // namespace WebCore | 70 } // namespace WebCore |
65 | 71 |
66 #endif // AnimationClock_h | 72 #endif // AnimationClock_h |
OLD | NEW |