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

Unified Diff: third_party/WebKit/Source/platform/animation/AnimationTranslationUtilTest.cpp

Issue 2615813003: Migrate WTF::Vector::append() to ::push_back() [part 14 of N] (Closed)
Patch Set: rebase, small fix in FontSettings.h Created 3 years, 11 months 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 side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698