| Index: third_party/WebKit/Source/platform/animation/AnimationTranslationUtilTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/animation/AnimationTranslationUtilTest.cpp b/third_party/WebKit/Source/platform/animation/AnimationTranslationUtilTest.cpp
|
| index 34e5df8196b48b786e6a466c6c9e713e4bfec394..b81af22ceeedf1244ef8cbdb664b76be3bb7d25c 100644
|
| --- a/third_party/WebKit/Source/platform/animation/AnimationTranslationUtilTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/animation/AnimationTranslationUtilTest.cpp
|
| @@ -39,11 +39,11 @@ TEST(AnimationTranslationUtilTest, transformsWork) {
|
| TransformOperations ops;
|
| CompositorTransformOperations outOps;
|
|
|
| - ops.operations().append(TranslateTransformOperation::create(
|
| + ops.operations().push_back(TranslateTransformOperation::create(
|
| Length(2, Fixed), Length(0, Fixed), TransformOperation::TranslateX));
|
| - ops.operations().append(RotateTransformOperation::create(
|
| + ops.operations().push_back(RotateTransformOperation::create(
|
| 0.1, 0.2, 0.3, 200000.4, TransformOperation::Rotate3D));
|
| - ops.operations().append(ScaleTransformOperation::create(
|
| + ops.operations().push_back(ScaleTransformOperation::create(
|
| 50.2, 100, -4, TransformOperation::Scale3D));
|
| toCompositorTransformOperations(ops, &outOps);
|
|
|
|
|