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 14 matching lines...) Expand all Loading... |
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 Timing_h | 31 #ifndef Timing_h |
32 #define Timing_h | 32 #define Timing_h |
33 | 33 |
34 #include "platform/animation/TimingFunction.h" | 34 #include "platform/animation/TimingFunction.h" |
| 35 #include "wtf/Allocator.h" |
35 #include "wtf/MathExtras.h" | 36 #include "wtf/MathExtras.h" |
36 #include "wtf/RefPtr.h" | 37 #include "wtf/RefPtr.h" |
37 | 38 |
38 namespace blink { | 39 namespace blink { |
39 | 40 |
40 struct Timing { | 41 struct Timing { |
| 42 WTF_MAKE_FAST_ALLOCATED(Timing); |
| 43 public: |
41 enum FillMode { | 44 enum FillMode { |
42 FillModeAuto, | 45 FillModeAuto, |
43 FillModeNone, | 46 FillModeNone, |
44 FillModeForwards, | 47 FillModeForwards, |
45 FillModeBackwards, | 48 FillModeBackwards, |
46 FillModeBoth | 49 FillModeBoth |
47 }; | 50 }; |
48 | 51 |
49 static String fillModeString(FillMode); | 52 static String fillModeString(FillMode); |
50 | 53 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 double iterationCount; | 112 double iterationCount; |
110 double iterationDuration; | 113 double iterationDuration; |
111 double playbackRate; | 114 double playbackRate; |
112 PlaybackDirection direction; | 115 PlaybackDirection direction; |
113 RefPtr<TimingFunction> timingFunction; | 116 RefPtr<TimingFunction> timingFunction; |
114 }; | 117 }; |
115 | 118 |
116 } // namespace blink | 119 } // namespace blink |
117 | 120 |
118 #endif | 121 #endif |
OLD | NEW |