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

Unified Diff: third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.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/CSSShadowListInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp
index 1bb49226f9231f5d0dab314cd64f8b3767d150b5..7631a8d5073dad02242cfa191bd61153e713fc1d 100644
--- a/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSShadowListInterpolationType.cpp
@@ -85,7 +85,7 @@ InterpolationValue CSSShadowListInterpolationType::maybeConvertInherit(
const ShadowList* inheritedShadowList =
ShadowListPropertyFunctions::getShadowList(cssProperty(),
*state.parentStyle());
- conversionCheckers.append(InheritedShadowListChecker::create(
+ conversionCheckers.push_back(InheritedShadowListChecker::create(
cssProperty(),
const_cast<ShadowList*>(inheritedShadowList))); // Take ref.
return convertShadowList(inheritedShadowList,
@@ -152,7 +152,7 @@ static PassRefPtr<ShadowList> createShadowList(
toNonInterpolableList(*nonInterpolableValue);
ShadowDataVector shadows;
for (size_t i = 0; i < length; i++)
- shadows.append(ShadowInterpolationFunctions::createShadowData(
+ shadows.push_back(ShadowInterpolationFunctions::createShadowData(
*interpolableList.get(i), nonInterpolableList.get(i), state));
return ShadowList::adopt(shadows);
}

Powered by Google App Engine
This is Rietveld 408576698