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

Unified Diff: third_party/WebKit/Source/core/layout/ColumnBalancer.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/ColumnBalancer.cpp
diff --git a/third_party/WebKit/Source/core/layout/ColumnBalancer.cpp b/third_party/WebKit/Source/core/layout/ColumnBalancer.cpp
index 33b3b396d7ae66a7b86c08ef6fb448d2987a9b2e..a16a4d7ce37e8253f2e49e82f781f981a6d6b34f 100644
--- a/third_party/WebKit/Source/core/layout/ColumnBalancer.cpp
+++ b/third_party/WebKit/Source/core/layout/ColumnBalancer.cpp
@@ -292,7 +292,7 @@ void InitialColumnHeightFinder::addContentRun(
columnSet().newFragmentainerGroupsAllowed())
return;
}
- m_contentRuns.append(ContentRun(endOffsetInFlowThread));
+ m_contentRuns.push_back(ContentRun(endOffsetInFlowThread));
}
unsigned InitialColumnHeightFinder::contentRunIndexWithTallestColumns() const {

Powered by Google App Engine
This is Rietveld 408576698