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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTransformList.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/SVGTransformList.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGTransformList.cpp b/third_party/WebKit/Source/core/svg/SVGTransformList.cpp
index 1ea79f19931a9cfb24951410dfa9a929a2924f1c..016cf90f1861c0caeaa93419fb12f1ddb0f53e43 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransformList.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGTransformList.cpp
@@ -232,7 +232,7 @@ SVGParseStatus parseTransformArgumentsForType(SVGTransformType type,
if (!parseNumber(ptr, end, argumentValue, AllowLeadingWhitespace))
break;
- arguments.append(argumentValue);
+ arguments.push_back(argumentValue);
trailingDelimiter = false;
if (arguments.size() == requiredWithOptional)
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTextPathElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGUnitTypes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698