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

Unified Diff: third_party/WebKit/Source/core/style/ShadowList.cpp

Issue 2617783002: Migrate WTF::Vector::append() to ::push_back() [part 12 of N] (Closed)
Patch Set: rebase Created 3 years, 11 months 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/style/ShadowList.cpp
diff --git a/third_party/WebKit/Source/core/style/ShadowList.cpp b/third_party/WebKit/Source/core/style/ShadowList.cpp
index 9c275ab65f02f1d19ab0001994691d29183b3122..31fa5a1c750e22adae4988aa86787c700ccc75ce 100644
--- a/third_party/WebKit/Source/core/style/ShadowList.cpp
+++ b/third_party/WebKit/Source/core/style/ShadowList.cpp
@@ -76,7 +76,7 @@ PassRefPtr<ShadowList> ShadowList::blend(const ShadowList* from,
else if (!toShadow)
toShadow = fromShadow->style() == Inset ? &defaultInsetShadowData
: &defaultShadowData;
- shadows.append(toShadow->blend(*fromShadow, progress, currentColor));
+ shadows.push_back(toShadow->blend(*fromShadow, progress, currentColor));
}
return ShadowList::adopt(shadows);
« no previous file with comments | « third_party/WebKit/Source/core/style/QuotesData.cpp ('k') | third_party/WebKit/Source/core/svg/SVGAngle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698