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

Unified Diff: Source/core/layout/LayoutPart.h

Issue 1032823003: Refactor HitTestResult to store the HitTestRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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: Source/core/layout/LayoutPart.h
diff --git a/Source/core/layout/LayoutPart.h b/Source/core/layout/LayoutPart.h
index c8dab58ae9780f16b1da8d6743305b745eb2ad1a..c18bac09899e34a8c3012f3b4fb7438e6270858a 100644
--- a/Source/core/layout/LayoutPart.h
+++ b/Source/core/layout/LayoutPart.h
@@ -39,7 +39,7 @@ public:
virtual bool needsPreferredWidthsRecalculation() const override final;
- virtual bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override;
+ virtual bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override;
void ref() { ++m_refCount; }
void deref();
@@ -70,7 +70,7 @@ private:
bool setWidgetGeometry(const LayoutRect&);
- bool nodeAtPointOverWidget(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction);
+ bool nodeAtPointOverWidget(HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction);
int m_refCount;
};

Powered by Google App Engine
This is Rietveld 408576698