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

Unified Diff: third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.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/CSSTransformInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp
index c4d80dfb39147967c7c97ccf80e470395f75d711..625a971876fe81622d229181a329d0dbbc492f70 100644
--- a/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSTransformInterpolationType.cpp
@@ -168,7 +168,7 @@ InterpolationValue CSSTransformInterpolationType::maybeConvertInherit(
ConversionCheckers& conversionCheckers) const {
const TransformOperations& inheritedTransform =
state.parentStyle()->transform();
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedTransformChecker::create(inheritedTransform));
return convertTransform(inheritedTransform);
}
@@ -198,7 +198,7 @@ InterpolationValue CSSTransformInterpolationType::maybeConvertValue(
LengthUnitsChecker::maybeCreate(std::move(lengthArray), state);
if (lengthUnitsChecker)
- conversionCheckers.append(std::move(lengthUnitsChecker));
+ conversionCheckers.push_back(std::move(lengthUnitsChecker));
}
TransformOperations transform = TransformBuilder::createTransformOperations(

Powered by Google App Engine
This is Rietveld 408576698