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

Unified Diff: third_party/WebKit/Source/core/svg/SVGMarkerElement.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/svg/SVGMarkerElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGMarkerElement.cpp b/third_party/WebKit/Source/core/svg/SVGMarkerElement.cpp
index 06e7d1468aea08a1e0b7ed26cf8971656c13b308..ff874a564ed4c544ffe50b0a5015d2854b97ca7e 100644
--- a/third_party/WebKit/Source/core/svg/SVGMarkerElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGMarkerElement.cpp
@@ -33,9 +33,9 @@ const SVGEnumerationStringEntries&
getStaticStringEntries<SVGMarkerUnitsType>() {
DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ());
if (entries.isEmpty()) {
- entries.append(
+ entries.push_back(
std::make_pair(SVGMarkerUnitsUserSpaceOnUse, "userSpaceOnUse"));
- entries.append(std::make_pair(SVGMarkerUnitsStrokeWidth, "strokeWidth"));
+ entries.push_back(std::make_pair(SVGMarkerUnitsStrokeWidth, "strokeWidth"));
}
return entries;
}
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGGradientElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGSVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698