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

Unified Diff: third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.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/CSSImageSliceInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
index 6ed147b9fe127faaa2192b9ad0ba4092274347ba..ee6082f6dc17958652e162ef7a53d73e806866a5 100644
--- a/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSImageSliceInterpolationType.cpp
@@ -161,7 +161,7 @@ InterpolationValue CSSImageSliceInterpolationType::maybeConvertNeutral(
ConversionCheckers& conversionCheckers) const {
SliceTypes underlyingTypes =
UnderlyingSliceTypesChecker::getUnderlyingSliceTypes(underlying);
- conversionCheckers.append(
+ conversionCheckers.push_back(
UnderlyingSliceTypesChecker::create(underlyingTypes));
LengthBox zeroBox(
Length(0, underlyingTypes.isNumber[SideTop] ? Fixed : Percent),
@@ -184,7 +184,7 @@ InterpolationValue CSSImageSliceInterpolationType::maybeConvertInherit(
const ImageSlice& inheritedImageSlice =
ImageSlicePropertyFunctions::getImageSlice(cssProperty(),
*state.parentStyle());
- conversionCheckers.append(InheritedSliceTypesChecker::create(
+ conversionCheckers.push_back(InheritedSliceTypesChecker::create(
cssProperty(), SliceTypes(inheritedImageSlice)));
return convertImageSlice(inheritedImageSlice,
state.parentStyle()->effectiveZoom());

Powered by Google App Engine
This is Rietveld 408576698