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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp

Issue 2788683005: Migrate WTF::RefVector::append() to ::push_back() (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp
index 15f174cd775a5dcd0ea0b62b2a142d36f899b858..f698a689c10f0fe0ce11c4c5b4ce4d375787662c 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderConverter.cpp
@@ -1156,7 +1156,7 @@ PassRefPtr<SVGDashArray> StyleBuilderConverter::convertStrokeDasharray(
RefPtr<SVGDashArray> array = SVGDashArray::create();
size_t length = dashes.length();
for (size_t i = 0; i < length; ++i) {
- array->append(convertLength(state, toCSSPrimitiveValue(dashes.item(i))));
+ array->push_back(convertLength(state, toCSSPrimitiveValue(dashes.item(i))));
}
return array.release();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698