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

Unified Diff: third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.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/CSSFontWeightInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
index 9e435dc9ba0e650944a8dc8ec2bb0a352836985c..9e5054d3a7b4b652d81e9464647c6c08ffc69cc3 100644
--- a/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
@@ -91,7 +91,7 @@ InterpolationValue CSSFontWeightInterpolationType::maybeConvertInherit(
if (!state.parentStyle())
return nullptr;
FontWeight inheritedFontWeight = state.parentStyle()->fontWeight();
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedFontWeightChecker::create(inheritedFontWeight));
return createFontWeightValue(inheritedFontWeight);
}
@@ -113,7 +113,7 @@ InterpolationValue CSSFontWeightInterpolationType::maybeConvertValue(
case CSSValueBolder:
case CSSValueLighter: {
FontWeight inheritedFontWeight = state.parentStyle()->fontWeight();
- conversionCheckers.append(
+ conversionCheckers.push_back(
InheritedFontWeightChecker::create(inheritedFontWeight));
if (keyword == CSSValueBolder)
return createFontWeightValue(

Powered by Google App Engine
This is Rietveld 408576698