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

Unified Diff: third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp

Issue 2562773002: Migrate WTF::Vector::append() to ::push_back() [part 2 of N] (Closed)
Patch Set: rebase Created 4 years 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/core/animation/CSSTranslateInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
index 9b88d7f001ac93dba3b58e08d324f70067ad3b08..ea9504af7be201aac6fdb60e2dee3496b5a7f8b1 100644
--- a/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSTranslateInterpolationType.cpp
@@ -102,7 +102,7 @@ InterpolationValue CSSTranslateInterpolationType::maybeConvertInherit(
ConversionCheckers& conversionCheckers) const {
TranslateTransformOperation* inheritedTranslate =
state.parentStyle()->translate();
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedTranslateChecker::create(inheritedTranslate));
return convertTranslateOperation(inheritedTranslate,
state.parentStyle()->effectiveZoom());

Powered by Google App Engine
This is Rietveld 408576698