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

Unified Diff: third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.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/CSSNumberInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
index 2f43369f324c09508f6ce6b67b76354409b86e90..5b374f6dbc79f387676442f2822759f559bb67f7 100644
--- a/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSNumberInterpolationType.cpp
@@ -65,7 +65,7 @@ InterpolationValue CSSNumberInterpolationType::maybeConvertInherit(
if (!NumberPropertyFunctions::getNumber(cssProperty(), *state.parentStyle(),
inheritedNumber))
return nullptr;
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedNumberChecker::create(cssProperty(), inheritedNumber));
return createNumberValue(inheritedNumber);
}

Powered by Google App Engine
This is Rietveld 408576698