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

Unified Diff: third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.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/paint/SVGInlineTextBoxPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp b/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
index dcc31c777e9e9a2395c217ddb180ded68bdf9585..f992bd601a8cdfccb0fdb315a572fa91f50a8acb 100644
--- a/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGInlineTextBoxPainter.cpp
@@ -575,7 +575,7 @@ SVGInlineTextBoxPainter::collectFragmentsInRange(int startPosition,
fragment, fragmentStartPosition, fragmentEndPosition))
continue;
- fragmentInfoList.append(SVGTextFragmentWithRange(
+ fragmentInfoList.push_back(SVGTextFragmentWithRange(
fragment, fragmentStartPosition, fragmentEndPosition));
}
return fragmentInfoList;

Powered by Google App Engine
This is Rietveld 408576698