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

Unified Diff: third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.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/CSSOffsetRotationInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp
index e5c4ce8dd33c950562239f8acb8071eb095228a5..3c76b9db6c0cc01c6a96077e76c3714d3b62fc65 100644
--- a/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSOffsetRotationInterpolationType.cpp
@@ -96,7 +96,7 @@ InterpolationValue CSSOffsetRotationInterpolationType::maybeConvertNeutral(
OffsetRotationType underlyingRotationType =
toCSSOffsetRotationNonInterpolableValue(*underlying.nonInterpolableValue)
.rotationType();
- conversionCheckers.append(
+ conversionCheckers.push_back(
UnderlyingRotationTypeChecker::create(underlyingRotationType));
return convertOffsetRotate(StyleOffsetRotation(0, underlyingRotationType));
}
@@ -112,7 +112,7 @@ InterpolationValue CSSOffsetRotationInterpolationType::maybeConvertInherit(
ConversionCheckers& conversionCheckers) const {
OffsetRotationType inheritedRotationType =
state.parentStyle()->offsetRotation().type;
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedRotationTypeChecker::create(inheritedRotationType));
return convertOffsetRotate(state.parentStyle()->offsetRotation());
}

Powered by Google App Engine
This is Rietveld 408576698