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

Unified Diff: Source/core/rendering/RenderView.cpp

Issue 17471008: Rework compositor touch hit testing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Various fixes and test additions Created 7 years, 5 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/rendering/RenderView.cpp
diff --git a/Source/core/rendering/RenderView.cpp b/Source/core/rendering/RenderView.cpp
index 0501515b4aae0e96d135764da54048d6bf51071f..5e28edd1fc22a419bd1f3d901c4abead2553dab3 100644
--- a/Source/core/rendering/RenderView.cpp
+++ b/Source/core/rendering/RenderView.cpp
@@ -350,6 +350,11 @@ void RenderView::mapAbsoluteToLocalPoint(MapCoordinatesFlags mode, TransformStat
}
}
+void RenderView::computeOwnHitTestRects(Vector<IntRect>& rects, const LayoutPoint& layerOffset) const
+{
+ // A RenderView doesn't really have any hit testing of it's own.
leviw_travelin_and_unemployed 2013/07/10 01:51:16 Why is this needed?
+}
+
bool RenderView::requiresColumns(int desiredColumnCount) const
{
if (m_frameView)

Powered by Google App Engine
This is Rietveld 408576698