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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc

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/ng/ng_inline_node.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
index 875f52a781333ec6fc561d8df33b0c0821cb7c84..fdd370d493db9acb9463cd00c2f6c299f4d64223 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_inline_node.cc
@@ -208,7 +208,7 @@ void NGInlineNode::ShapeText() {
CachingWordShapeIterator iterator(shape_cache, item_run, &item_font);
RefPtr<const ShapeResult> word_result;
while (iterator.next(&word_result)) {
- item.shape_results_.append(word_result.get());
+ item.shape_results_.push_back(word_result.get());
};
}
}

Powered by Google App Engine
This is Rietveld 408576698