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

Unified Diff: third_party/WebKit/Source/core/layout/api/LineLayoutBox.h

Issue 2863933003: Remove the parameter of LayoutBox::XXXOverflowRectForPropagation() (Closed)
Patch Set: - Created 3 years, 7 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/api/LineLayoutBox.h
diff --git a/third_party/WebKit/Source/core/layout/api/LineLayoutBox.h b/third_party/WebKit/Source/core/layout/api/LineLayoutBox.h
index bf6b5ba046ace38bf6ab7d4bc50abea4141b60de..2d49673304addaef32604d38c3d8dd0a324c9ff4 100644
--- a/third_party/WebKit/Source/core/layout/api/LineLayoutBox.h
+++ b/third_party/WebKit/Source/core/layout/api/LineLayoutBox.h
@@ -75,13 +75,11 @@ class LineLayoutBox : public LineLayoutBoxModel {
}
bool HasOverflowModel() const { return ToBox()->HasOverflowModel(); }
- LayoutRect LogicalVisualOverflowRectForPropagation(
- const ComputedStyle& style) const {
- return ToBox()->LogicalVisualOverflowRectForPropagation(style);
+ LayoutRect LogicalVisualOverflowRectForPropagation() const {
+ return ToBox()->LogicalVisualOverflowRectForPropagation();
}
- LayoutRect LogicalLayoutOverflowRectForPropagation(
- const ComputedStyle& style) const {
- return ToBox()->LogicalLayoutOverflowRectForPropagation(style);
+ LayoutRect LogicalLayoutOverflowRectForPropagation() const {
+ return ToBox()->LogicalLayoutOverflowRectForPropagation();
}
void SetLocation(const LayoutPoint& location) {
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTableRow.cpp ('k') | third_party/WebKit/Source/core/layout/line/InlineFlowBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698