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

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

Issue 2725343002: Migrate WTF::LinkedHashSet/ListHashSet::last() to ::back() (Closed)
Patch Set: rebase Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
index 71c55f144f1bd92fe13dc025d05766d30825c406..c6d4d711d83ad29ffc61d08f1915c46f6089ed7f 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
@@ -372,7 +372,7 @@ class CORE_EXPORT LayoutBlockFlow : public LayoutBlock {
LayoutUnit nextFloatLogicalBottomBelowForBlock(LayoutUnit) const;
FloatingObject* lastFloatFromPreviousLine() const {
- return containsFloats() ? m_floatingObjects->set().last().get() : nullptr;
+ return containsFloats() ? m_floatingObjects->set().back().get() : nullptr;
}
void setShouldDoFullPaintInvalidationForFirstLine();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698