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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBox.cpp

Issue 2657183002: Use full mapLocalToAncestor machinery in ScrollingCoordinator. (Closed)
Patch Set: Delete unused test file Created 3 years, 11 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/LayoutBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
index 24e8029cd76195d5c3b2fcb13c43c455ff6dd9f9..42db96d936b8e33d6e1432d45b4730df3e40e458 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
@@ -839,9 +839,9 @@ IntSize LayoutBox::absoluteContentBoxOffset() const {
return toIntSize(offset);
}
-FloatQuad LayoutBox::absoluteContentQuad() const {
+FloatQuad LayoutBox::absoluteContentQuad(MapCoordinatesFlags flags) const {
LayoutRect rect = contentBoxRect();
- return localToAbsoluteQuad(FloatRect(rect));
+ return localToAbsoluteQuad(FloatRect(rect), flags);
}
LayoutRect LayoutBox::backgroundRect(BackgroundRectType rectType) const {
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBox.h ('k') | third_party/WebKit/Source/core/layout/LayoutObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698