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

Unified Diff: sky/engine/core/rendering/RenderBoxModelObject.cpp

Issue 713073003: remove updateTouchEventTargetRectsIfNeeded (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: moar Created 6 years, 1 month 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: sky/engine/core/rendering/RenderBoxModelObject.cpp
diff --git a/sky/engine/core/rendering/RenderBoxModelObject.cpp b/sky/engine/core/rendering/RenderBoxModelObject.cpp
index 5f40547bd108c37d63453e68aac07d1ce099bb91..83b78a6216cfc0219f43289c9154e01a83c34a44 100644
--- a/sky/engine/core/rendering/RenderBoxModelObject.cpp
+++ b/sky/engine/core/rendering/RenderBoxModelObject.cpp
@@ -2453,18 +2453,6 @@ void RenderBoxModelObject::setContinuation(RenderBoxModelObject* continuation)
}
}
-void RenderBoxModelObject::computeLayerHitTestRects(LayerHitTestRects& rects) const
-{
- RenderLayerModelObject::computeLayerHitTestRects(rects);
-
- // If there is a continuation then we need to consult it here, since this is
- // the root of the tree walk and it wouldn't otherwise get picked up.
- // Continuations should always be siblings in the tree, so any others should
- // get picked up already by the tree walk.
- if (continuation())
- continuation()->computeLayerHitTestRects(rects);
-}
-
LayoutRect RenderBoxModelObject::localCaretRectForEmptyElement(LayoutUnit width, LayoutUnit textIndentOffset)
{
ASSERT(!slowFirstChild());

Powered by Google App Engine
This is Rietveld 408576698