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

Unified Diff: third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.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/CSSPaintInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
index a8adb8cf0cbf9a703ff934b3e7ff8a1b3ec61827..ab39b4fa2809562cca86363947d96d821bdefb1b 100644
--- a/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSPaintInterpolationType.cpp
@@ -68,10 +68,10 @@ InterpolationValue CSSPaintInterpolationType::maybeConvertInherit(
StyleColor parentColor;
if (!PaintPropertyFunctions::getColor(cssProperty(), *state.parentStyle(),
parentColor)) {
- conversionCheckers.append(InheritedPaintChecker::create(cssProperty()));
+ conversionCheckers.push_back(InheritedPaintChecker::create(cssProperty()));
return nullptr;
}
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedPaintChecker::create(cssProperty(), parentColor));
return InterpolationValue(
CSSColorInterpolationType::createInterpolableColor(parentColor));

Powered by Google App Engine
This is Rietveld 408576698