| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CSSTimingData_h | 5 #ifndef CSSTimingData_h |
| 6 #define CSSTimingData_h | 6 #define CSSTimingData_h |
| 7 | 7 |
| 8 #include "platform/animation/TimingFunction.h" | 8 #include "platform/animation/TimingFunction.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "wtf/Allocator.h" | 10 #include "platform/wtf/Allocator.h" |
| 11 #include "wtf/Vector.h" | 11 #include "platform/wtf/Vector.h" |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 struct Timing; | 15 struct Timing; |
| 16 | 16 |
| 17 class CSSTimingData { | 17 class CSSTimingData { |
| 18 USING_FAST_MALLOC(CSSTimingData); | 18 USING_FAST_MALLOC(CSSTimingData); |
| 19 | 19 |
| 20 public: | 20 public: |
| 21 ~CSSTimingData() {} | 21 ~CSSTimingData() {} |
| (...skipping 30 matching lines...) Expand all Loading... |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 Vector<double> m_delayList; | 54 Vector<double> m_delayList; |
| 55 Vector<double> m_durationList; | 55 Vector<double> m_durationList; |
| 56 Vector<RefPtr<TimingFunction>> m_timingFunctionList; | 56 Vector<RefPtr<TimingFunction>> m_timingFunctionList; |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 } // namespace blink | 59 } // namespace blink |
| 60 | 60 |
| 61 #endif // CSSTimingData_h | 61 #endif // CSSTimingData_h |
| OLD | NEW |