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 18 matching lines...) Expand all Loading... | |
29 */ | 29 */ |
30 | 30 |
31 #ifndef AnimationClock_h | 31 #ifndef AnimationClock_h |
32 #define AnimationClock_h | 32 #define AnimationClock_h |
33 | 33 |
34 #include "wtf/CurrentTime.h" | 34 #include "wtf/CurrentTime.h" |
35 #include "wtf/PassOwnPtr.h" | 35 #include "wtf/PassOwnPtr.h" |
36 | 36 |
37 namespace WebCore { | 37 namespace WebCore { |
38 | 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; | |
abarth-chromium
2014/02/24 06:14:08
Where does this constant come from? Would this co
dstockwell
2014/02/24 06:58:07
I think whatever we choose here is going to be fai
| |
45 | |
39 class AnimationClock { | 46 class AnimationClock { |
40 public: | 47 public: |
41 static PassOwnPtr<AnimationClock> create(WTF::TimeFunction monotonicallyIncr easingTime = WTF::monotonicallyIncreasingTime) | 48 static PassOwnPtr<AnimationClock> create(WTF::TimeFunction monotonicallyIncr easingTime = WTF::monotonicallyIncreasingTime) |
42 { | 49 { |
43 return adoptPtr(new AnimationClock(monotonicallyIncreasingTime)); | 50 return adoptPtr(new AnimationClock(monotonicallyIncreasingTime)); |
44 } | 51 } |
45 | 52 |
46 void updateTime(double time) | 53 void updateTime(double time) |
47 { | 54 { |
48 if (time > m_time) | 55 if (time > m_time) |
49 m_time = time; | 56 m_time = time; |
50 m_frozen = true; | 57 m_frozen = true; |
51 } | 58 } |
52 | 59 |
53 double currentTime() | 60 double currentTime() |
abarth-chromium
2014/02/24 06:14:08
Should we move these functions out of line now tha
dstockwell
2014/02/24 12:41:16
Done.
| |
54 { | 61 { |
55 if (!m_frozen) | 62 if (!m_frozen) { |
56 updateTime(m_monotonicallyIncreasingTime()); | 63 double newTime = m_monotonicallyIncreasingTime(); |
64 if (newTime >= m_time + minTimeBeforeUnsynchronizedAnimationClockTic k) | |
65 m_time = newTime; | |
66 } | |
57 return m_time; | 67 return m_time; |
58 } | 68 } |
59 | 69 |
60 void unfreeze() { m_frozen = false; } | 70 void unfreeze() { m_frozen = false; } |
61 | 71 |
62 void resetTimeForTesting() { m_time = 0; m_frozen = true; } | 72 void resetTimeForTesting() { m_time = 0; m_frozen = true; } |
63 | 73 |
64 private: | 74 private: |
65 AnimationClock(WTF::TimeFunction monotonicallyIncreasingTime) | 75 AnimationClock(WTF::TimeFunction monotonicallyIncreasingTime) |
66 : m_monotonicallyIncreasingTime(monotonicallyIncreasingTime) | 76 : m_monotonicallyIncreasingTime(monotonicallyIncreasingTime) |
67 , m_time(0) | 77 , m_time(0) |
68 , m_frozen(false) | 78 , m_frozen(false) |
69 { | 79 { |
70 } | 80 } |
71 WTF::TimeFunction m_monotonicallyIncreasingTime; | 81 WTF::TimeFunction m_monotonicallyIncreasingTime; |
72 double m_time; | 82 double m_time; |
73 bool m_frozen; | 83 bool m_frozen; |
74 }; | 84 }; |
75 | 85 |
76 } // namespace WebCore | 86 } // namespace WebCore |
77 | 87 |
78 #endif // AnimationClock_h | 88 #endif // AnimationClock_h |
OLD | NEW |