Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: Source/core/platform/animation/AnimationTranslationUtil.cpp

Issue 45553002: Move remaining classes in graphics/transforms to platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix merge problem Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/css/resolver/TransformBuilder.cpp ('k') | Source/core/platform/animation/AnimationTranslationUtilTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698