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

Unified Diff: third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.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/FlexibleBoxAlgorithm.cpp
diff --git a/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp b/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
index ea168768db241f74db0ea307690276848194e87d..7be7bb6912001e9697d2561a27c96fb64b2a4e42 100644
--- a/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
+++ b/third_party/WebKit/Source/core/layout/FlexibleBoxAlgorithm.cpp
@@ -78,7 +78,7 @@ bool FlexLayoutAlgorithm::ComputeNextFlexLine(
m_lineBreakLength &&
lineHasInFlowItem)
break;
- lineItems.append(flexItem);
+ lineItems.push_back(flexItem);
lineHasInFlowItem = true;
sumFlexBaseSize += flexItem.flexBaseMarginBoxSize();
totalFlexGrow += flexItem.box->style()->flexGrow();
« no previous file with comments | « third_party/WebKit/Source/core/layout/ColumnBalancer.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698