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

Unified Diff: third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.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/CSSTextIndentInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
index 828423d9d1b9aea1a1fb788c11cde06e59b91070..731a7369448da406c64e9d3e016d0793596b8e8c 100644
--- a/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSTextIndentInterpolationType.cpp
@@ -128,7 +128,7 @@ InterpolationValue CSSTextIndentInterpolationType::maybeConvertNeutral(
IndentMode mode =
toCSSTextIndentNonInterpolableValue(*underlying.nonInterpolableValue)
.mode();
- conversionCheckers.append(UnderlyingIndentModeChecker::create(mode));
+ conversionCheckers.push_back(UnderlyingIndentModeChecker::create(mode));
return createValue(Length(0, Fixed), mode, 1);
}
@@ -145,7 +145,7 @@ InterpolationValue CSSTextIndentInterpolationType::maybeConvertInherit(
ConversionCheckers& conversionCheckers) const {
const ComputedStyle& parentStyle = *state.parentStyle();
IndentMode mode(parentStyle);
- conversionCheckers.append(InheritedIndentModeChecker::create(mode));
+ conversionCheckers.push_back(InheritedIndentModeChecker::create(mode));
return createValue(parentStyle.textIndent(), mode,
parentStyle.effectiveZoom());
}

Powered by Google App Engine
This is Rietveld 408576698