| 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 16 matching lines...) Expand all Loading... |
| 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 CompositorAnimations_h | 31 #ifndef CompositorAnimations_h |
| 32 #define CompositorAnimations_h | 32 #define CompositorAnimations_h |
| 33 | 33 |
| 34 #include "core/animation/AnimationEffect.h" | 34 #include "core/animation/AnimationEffect.h" |
| 35 #include "core/animation/KeyframeAnimationEffect.h" | 35 #include "core/animation/KeyframeAnimationEffect.h" |
| 36 #include "core/animation/Timing.h" | 36 #include "core/animation/Timing.h" |
| 37 #include "core/platform/animation/TimingFunction.h" | 37 #include "platform/animation/TimingFunction.h" |
| 38 #include "public/platform/WebAnimation.h" | 38 #include "public/platform/WebAnimation.h" |
| 39 #include "public/platform/WebAnimationCurve.h" | 39 #include "public/platform/WebAnimationCurve.h" |
| 40 #include "public/platform/WebCompositorSupport.h" | 40 #include "public/platform/WebCompositorSupport.h" |
| 41 #include "public/platform/WebFilterAnimationCurve.h" | 41 #include "public/platform/WebFilterAnimationCurve.h" |
| 42 #include "public/platform/WebFilterKeyframe.h" | 42 #include "public/platform/WebFilterKeyframe.h" |
| 43 #include "public/platform/WebFilterOperations.h" | 43 #include "public/platform/WebFilterOperations.h" |
| 44 #include "public/platform/WebFloatAnimationCurve.h" | 44 #include "public/platform/WebFloatAnimationCurve.h" |
| 45 #include "public/platform/WebFloatKeyframe.h" | 45 #include "public/platform/WebFloatKeyframe.h" |
| 46 #include "public/platform/WebTransformAnimationCurve.h" | 46 #include "public/platform/WebTransformAnimationCurve.h" |
| 47 #include "public/platform/WebTransformKeyframe.h" | 47 #include "public/platform/WebTransformKeyframe.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 if (newInstance) { | 84 if (newInstance) { |
| 85 instance = newInstance; | 85 instance = newInstance; |
| 86 } | 86 } |
| 87 return instance; | 87 return instance; |
| 88 } | 88 } |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace WebCore | 91 } // namespace WebCore |
| 92 | 92 |
| 93 #endif | 93 #endif |
| OLD | NEW |