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

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

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/api/LayoutBoxItem.h
diff --git a/third_party/WebKit/Source/core/layout/api/LayoutBoxItem.h b/third_party/WebKit/Source/core/layout/api/LayoutBoxItem.h
index a93c022df467f84758665e03a426afa142b2dab7..b51a0b37e6db1994e6e130f508d89db32abbe249 100644
--- a/third_party/WebKit/Source/core/layout/api/LayoutBoxItem.h
+++ b/third_party/WebKit/Source/core/layout/api/LayoutBoxItem.h
@@ -62,8 +62,8 @@ class LayoutBoxItem : public LayoutBoxModel {
toBox()->mapLocalToAncestor(ancestor, state, flags);
}
- FloatQuad absoluteContentQuad() const {
- return toBox()->absoluteContentQuad();
+ FloatQuad absoluteContentQuad(MapCoordinatesFlags flags = 0) const {
+ return toBox()->absoluteContentQuad(flags);
}
private:

Powered by Google App Engine
This is Rietveld 408576698