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

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

Issue 2514573002: isPageLogicalHeightKnown() doesn't need a parameter. (Closed)
Patch Set: 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
« 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/LayoutBlock.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.h b/third_party/WebKit/Source/core/layout/LayoutBlock.h
index 6e9ae47c0298e0fe3cf4bacf1e7082e8c5c1eb2b..0642d975f118eac70ea2eae3a94b61622db8c25d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlock.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBlock.h
@@ -505,8 +505,8 @@ class CORE_EXPORT LayoutBlock : public LayoutBox {
bool widthAvailableToChildrenHasChanged();
protected:
- bool isPageLogicalHeightKnown(LayoutUnit logicalOffset) const {
- return pageLogicalHeightForOffset(logicalOffset);
+ bool isPageLogicalHeightKnown() const {
+ return pageLogicalHeightForOffset(LayoutUnit());
}
// Returns the logical offset at the top of the next page, for a given offset.
« 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