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

Unified Diff: third_party/WebKit/Source/core/animation/CSSClipInterpolationType.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/CSSClipInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
index 664ead256051a6ea1fdec0e8738a5fcb4b2a823a..3a3ea9defe1c76df91a29ff5f20801e9a50c05fa 100644
--- a/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSClipInterpolationType.cpp
@@ -162,7 +162,7 @@ InterpolationValue CSSClipInterpolationType::maybeConvertNeutral(
ConversionCheckers& conversionCheckers) const {
ClipAutos underlyingAutos =
UnderlyingAutosChecker::getUnderlyingAutos(underlying);
- conversionCheckers.append(UnderlyingAutosChecker::create(underlyingAutos));
+ conversionCheckers.push_back(UnderlyingAutosChecker::create(underlyingAutos));
if (underlyingAutos.isAuto)
return nullptr;
LengthBox neutralBox(
@@ -183,7 +183,7 @@ InterpolationValue CSSClipInterpolationType::maybeConvertInherit(
const StyleResolverState& state,
ConversionCheckers& conversionCheckers) const {
ClipAutos inheritedAutos = getClipAutos(*state.parentStyle());
- conversionCheckers.append(InheritedAutosChecker::create(inheritedAutos));
+ conversionCheckers.push_back(InheritedAutosChecker::create(inheritedAutos));
if (inheritedAutos.isAuto)
return nullptr;
return createClipValue(state.parentStyle()->clip(),

Powered by Google App Engine
This is Rietveld 408576698