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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageInterpolationType.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/CSSImageInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
index 41e475b3ba55df440169566420608a2d4e35f66f..ada30fac18cb18889753c0359a7cc3d8664288ef 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageInterpolationType.cpp
@@ -158,7 +158,7 @@ class UnderlyingImageChecker : public InterpolationType::ConversionChecker {
InterpolationValue CSSImageInterpolationType::maybeConvertNeutral(
const InterpolationValue& underlying,
ConversionCheckers& conversionCheckers) const {
- conversionCheckers.append(UnderlyingImageChecker::create(underlying));
+ conversionCheckers.push_back(UnderlyingImageChecker::create(underlying));
return InterpolationValue(underlying.clone());
}
@@ -207,7 +207,7 @@ InterpolationValue CSSImageInterpolationType::maybeConvertInherit(
const StyleImage* inheritedImage = ImagePropertyFunctions::getStyleImage(
cssProperty(), *state.parentStyle());
StyleImage* refableImage = const_cast<StyleImage*>(inheritedImage);
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedImageChecker::create(cssProperty(), refableImage));
return maybeConvertStyleImage(inheritedImage, true);
}

Powered by Google App Engine
This is Rietveld 408576698