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

Unified Diff: third_party/WebKit/Source/platform/transforms/InterpolatedTransformOperation.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/transforms/InterpolatedTransformOperation.cpp
diff --git a/third_party/WebKit/Source/platform/transforms/InterpolatedTransformOperation.cpp b/third_party/WebKit/Source/platform/transforms/InterpolatedTransformOperation.cpp
index 2da965176c849afc6a0d5ee7511402a63257a5a7..edc72a2b17aeee69a735695702d1df4901a4c0cd 100644
--- a/third_party/WebKit/Source/platform/transforms/InterpolatedTransformOperation.cpp
+++ b/third_party/WebKit/Source/platform/transforms/InterpolatedTransformOperation.cpp
@@ -63,12 +63,13 @@ PassRefPtr<TransformOperation> InterpolatedTransformOperation::blend(
return this;
TransformOperations thisOperations;
- thisOperations.operations().append(this);
+ thisOperations.operations().push_back(this);
TransformOperations fromOperations;
if (blendToIdentity)
- fromOperations.operations().append(IdentityTransformOperation::create());
+ fromOperations.operations().push_back(IdentityTransformOperation::create());
else
- fromOperations.operations().append(const_cast<TransformOperation*>(from));
+ fromOperations.operations().push_back(
+ const_cast<TransformOperation*>(from));
return InterpolatedTransformOperation::create(thisOperations, fromOperations,
progress);
}

Powered by Google App Engine
This is Rietveld 408576698