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(); } |