OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 12 matching lines...) Expand all Loading... |
23 */ | 23 */ |
24 | 24 |
25 #include "config.h" | 25 #include "config.h" |
26 | 26 |
27 #include "core/platform/animation/AnimationTranslationUtil.h" | 27 #include "core/platform/animation/AnimationTranslationUtil.h" |
28 | 28 |
29 #include "core/platform/animation/CSSAnimationData.h" | 29 #include "core/platform/animation/CSSAnimationData.h" |
30 #include "core/platform/animation/KeyframeValueList.h" | 30 #include "core/platform/animation/KeyframeValueList.h" |
31 #include "core/platform/graphics/filters/FilterOperations.h" | 31 #include "core/platform/graphics/filters/FilterOperations.h" |
32 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" | 32 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" |
33 #include "core/platform/graphics/transforms/InterpolatedTransformOperation.h" | |
34 #include "core/platform/graphics/transforms/Matrix3DTransformOperation.h" | |
35 #include "core/platform/graphics/transforms/MatrixTransformOperation.h" | |
36 #include "core/platform/graphics/transforms/PerspectiveTransformOperation.h" | |
37 #include "core/platform/graphics/transforms/RotateTransformOperation.h" | |
38 #include "core/platform/graphics/transforms/ScaleTransformOperation.h" | |
39 #include "core/platform/graphics/transforms/SkewTransformOperation.h" | |
40 #include "core/platform/graphics/transforms/TransformOperations.h" | |
41 #include "core/platform/graphics/transforms/TranslateTransformOperation.h" | |
42 #include "platform/LengthFunctions.h" | 33 #include "platform/LengthFunctions.h" |
43 #include "platform/geometry/FloatSize.h" | 34 #include "platform/geometry/FloatSize.h" |
| 35 #include "platform/transforms/InterpolatedTransformOperation.h" |
| 36 #include "platform/transforms/Matrix3DTransformOperation.h" |
| 37 #include "platform/transforms/MatrixTransformOperation.h" |
| 38 #include "platform/transforms/PerspectiveTransformOperation.h" |
| 39 #include "platform/transforms/RotateTransformOperation.h" |
| 40 #include "platform/transforms/ScaleTransformOperation.h" |
| 41 #include "platform/transforms/SkewTransformOperation.h" |
| 42 #include "platform/transforms/TransformOperations.h" |
44 #include "platform/transforms/TransformationMatrix.h" | 43 #include "platform/transforms/TransformationMatrix.h" |
| 44 #include "platform/transforms/TranslateTransformOperation.h" |
45 | 45 |
46 #include "public/platform/Platform.h" | 46 #include "public/platform/Platform.h" |
47 #include "public/platform/WebAnimation.h" | 47 #include "public/platform/WebAnimation.h" |
48 #include "public/platform/WebAnimationCurve.h" | 48 #include "public/platform/WebAnimationCurve.h" |
49 #include "public/platform/WebCompositorSupport.h" | 49 #include "public/platform/WebCompositorSupport.h" |
50 #include "public/platform/WebFilterAnimationCurve.h" | 50 #include "public/platform/WebFilterAnimationCurve.h" |
51 #include "public/platform/WebFloatAnimationCurve.h" | 51 #include "public/platform/WebFloatAnimationCurve.h" |
52 #include "public/platform/WebTransformAnimationCurve.h" | 52 #include "public/platform/WebTransformAnimationCurve.h" |
53 #include "public/platform/WebTransformOperations.h" | 53 #include "public/platform/WebTransformOperations.h" |
54 | 54 |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 | 327 |
328 case AnimatedPropertyBackgroundColor: | 328 case AnimatedPropertyBackgroundColor: |
329 case AnimatedPropertyInvalid: | 329 case AnimatedPropertyInvalid: |
330 return nullptr; | 330 return nullptr; |
331 } | 331 } |
332 | 332 |
333 return nullptr; | 333 return nullptr; |
334 } | 334 } |
335 | 335 |
336 } // namespace WebCore | 336 } // namespace WebCore |
OLD | NEW |