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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp

Issue 2610253004: Migrate WTF::Vector::append() to ::push_back() [part 9 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/layout/svg/SVGTextLayoutAttributesBuilder.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
index 03399583753b0945e64030799e983446610eabf4..6a8bab4ad93c73970242af170e117144b420c465 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
@@ -117,7 +117,7 @@ void SVGTextLayoutAttributesBuilder::collectTextPositioningElements(
positioningElementFromLayoutObject(start);
unsigned atPosition = m_textPositions.size();
if (element)
- m_textPositions.append(TextPosition(element, m_characterCount));
+ m_textPositions.push_back(TextPosition(element, m_characterCount));
for (LayoutObject* child = start.slowFirstChild(); child;
child = child->nextSibling()) {

Powered by Google App Engine
This is Rietveld 408576698