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

Unified Diff: third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h

Issue 2470233009: WTF/std normalization: replace WTF::Vector::first() with ::front() (Closed)
Patch Set: rebase Created 4 years, 1 month 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/MultiColumnFragmentainerGroup.h
diff --git a/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h b/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h
index 6fe45b6ef356a33b254c9a722c503a2fa23a46fb..bb625deba6b8a4cb6937f3cabc59d3e5c4f364ee 100644
--- a/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h
+++ b/third_party/WebKit/Source/core/layout/MultiColumnFragmentainerGroup.h
@@ -157,9 +157,9 @@ class CORE_EXPORT MultiColumnFragmentainerGroupList {
// Remove all fragmentainer groups but the first one.
void deleteExtraGroups();
- MultiColumnFragmentainerGroup& first() { return m_groups.first(); }
+ MultiColumnFragmentainerGroup& first() { return m_groups.front(); }
const MultiColumnFragmentainerGroup& first() const {
- return m_groups.first();
+ return m_groups.front();
}
MultiColumnFragmentainerGroup& last() { return m_groups.back(); }
const MultiColumnFragmentainerGroup& last() const { return m_groups.back(); }

Powered by Google App Engine
This is Rietveld 408576698