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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.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/CSSImageListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
index 6cef1a663334b3429696715eed2aceec5fe15e6c..354133138d7460c0216e3a09adfc3f5889b90191 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageListInterpolationType.cpp
@@ -41,7 +41,7 @@ class UnderlyingImageListChecker : public InterpolationType::ConversionChecker {
InterpolationValue CSSImageListInterpolationType::maybeConvertNeutral(
const InterpolationValue& underlying,
ConversionCheckers& conversionCheckers) const {
- conversionCheckers.append(UnderlyingImageListChecker::create(underlying));
+ conversionCheckers.push_back(UnderlyingImageListChecker::create(underlying));
return underlying.clone();
}
@@ -103,7 +103,7 @@ InterpolationValue CSSImageListInterpolationType::maybeConvertInherit(
StyleImageList inheritedImageList;
ImageListPropertyFunctions::getImageList(cssProperty(), *state.parentStyle(),
inheritedImageList);
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedImageListChecker::create(cssProperty(), inheritedImageList));
return maybeConvertStyleImageList(inheritedImageList);
}

Powered by Google App Engine
This is Rietveld 408576698