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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBlockFlow.h

Issue 2604073002: Apply offset from the correct graphics layer; simplify code for link highlights. (Closed)
Patch Set: none Created 4 years 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/LayoutBlockFlow.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
index a20021e79aa73f5bbd30e1ce1830f87d2092a2e9..d90fd3f17fb5ace47c1533c98eddad424861490e 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
@@ -427,8 +427,10 @@ class CORE_EXPORT LayoutBlockFlow : public LayoutBlock {
void absoluteRects(Vector<IntRect>&,
const LayoutPoint& accumulatedOffset) const override;
- void absoluteQuads(Vector<FloatQuad>&) const override;
- void absoluteQuadsForSelf(Vector<FloatQuad>& quads) const override;
+ void absoluteQuads(Vector<FloatQuad>&,
+ MapCoordinatesFlags mode = 0) const override;
+ void absoluteQuadsForSelf(Vector<FloatQuad>& quads,
+ MapCoordinatesFlags mode = 0) const override;
LayoutObject* hoverAncestor() const final;
LayoutUnit logicalRightOffsetForLine(

Powered by Google App Engine
This is Rietveld 408576698