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

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

Issue 2657183002: Use full mapLocalToAncestor machinery in ScrollingCoordinator. (Closed)
Patch Set: test expectations 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/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index 1bb5c34bf25a12f7bdcc9c3425b855fe1d446c5f..b6e15842a1b9026358bd0af32cff82e1238caf7e 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -958,9 +958,9 @@ FloatRect LayoutObject::absoluteBoundingBoxFloatRect() const {
return result;
}
-IntRect LayoutObject::absoluteBoundingBoxRect() const {
+IntRect LayoutObject::absoluteBoundingBoxRect(MapCoordinatesFlags flags) const {
Vector<FloatQuad> quads;
- absoluteQuads(quads);
+ absoluteQuads(quads, flags);
size_t n = quads.size();
if (!n)

Powered by Google App Engine
This is Rietveld 408576698