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

Unified Diff: third_party/WebKit/Source/core/layout/line/InlineFlowBox.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/line/InlineFlowBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
index 0a19c60e8d294f45fdfa0f2b750307e2ed885af5..29a8fad28d49cf0263fb53a9a2d050f8e6f03120 100644
--- a/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
+++ b/third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp
@@ -1574,7 +1574,7 @@ void InlineFlowBox::collectLeafBoxesInLogicalOrder(
for (; leaf; leaf = leaf->nextLeafChild()) {
minLevel = std::min(minLevel, leaf->bidiLevel());
maxLevel = std::max(maxLevel, leaf->bidiLevel());
- leafBoxesInLogicalOrder.append(leaf);
+ leafBoxesInLogicalOrder.push_back(leaf);
}
if (getLineLayoutItem().style()->rtlOrdering() == EOrder::Visual)

Powered by Google App Engine
This is Rietveld 408576698