| 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 TimingInput_h | 5 #ifndef TimingInput_h |
| 6 #define TimingInput_h | 6 #define TimingInput_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/animation/Timing.h" | 9 #include "core/animation/Timing.h" |
| 10 #include "wtf/Allocator.h" | 10 #include "platform/wtf/Allocator.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class Document; | 14 class Document; |
| 15 class ExceptionState; | 15 class ExceptionState; |
| 16 class KeyframeEffectOptions; | 16 class KeyframeEffectOptions; |
| 17 class UnrestrictedDoubleOrString; | 17 class UnrestrictedDoubleOrString; |
| 18 | 18 |
| 19 class CORE_EXPORT TimingInput { | 19 class CORE_EXPORT TimingInput { |
| 20 STATIC_ONLY(TimingInput); | 20 STATIC_ONLY(TimingInput); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 42 static void setPlaybackDirection(Timing&, const String& direction); | 42 static void setPlaybackDirection(Timing&, const String& direction); |
| 43 static bool setTimingFunction(Timing&, | 43 static bool setTimingFunction(Timing&, |
| 44 const String& timingFunctionString, | 44 const String& timingFunctionString, |
| 45 Document*, | 45 Document*, |
| 46 ExceptionState&); | 46 ExceptionState&); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace blink | 49 } // namespace blink |
| 50 | 50 |
| 51 #endif | 51 #endif |
| OLD | NEW |