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

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

Issue 1820483002: Untangle multicol coordinate space conversion from offsetFromContainer(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/layout/api/LayoutItem.h
diff --git a/third_party/WebKit/Source/core/layout/api/LayoutItem.h b/third_party/WebKit/Source/core/layout/api/LayoutItem.h
index b0fe64efe4316165e8fd022813bd172cd1e97d10..a9d12c8dae5cf1b37d3b333c32ad4ae961cdbb0e 100644
--- a/third_party/WebKit/Source/core/layout/api/LayoutItem.h
+++ b/third_party/WebKit/Source/core/layout/api/LayoutItem.h
@@ -139,9 +139,9 @@ public:
return m_layoutObject->styleRef();
}
- LayoutSize offsetFromContainer(const LayoutItem& item, const LayoutPoint& point, bool* offsetDependsOnPoint = nullptr) const
+ LayoutSize offsetFromContainer(const LayoutItem& item) const
{
- return m_layoutObject->offsetFromContainer(item.layoutObject(), point, offsetDependsOnPoint);
+ return m_layoutObject->offsetFromContainer(item.layoutObject());
}
FrameView* frameView() const

Powered by Google App Engine
This is Rietveld 408576698