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

Unified Diff: sky/engine/core/frame/FrameView.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/frame/FrameView.cpp
diff --git a/sky/engine/core/frame/FrameView.cpp b/sky/engine/core/frame/FrameView.cpp
index 330f230ea99b6de82c10283b38d4a237f3a89d71..26f8dc1e18349e7aa00d50ebde9193e7d2f1ea1b 100644
--- a/sky/engine/core/frame/FrameView.cpp
+++ b/sky/engine/core/frame/FrameView.cpp
@@ -778,11 +778,6 @@ void FrameView::performPostLayoutTasks()
FontFaceSet::didLayout(*m_frame->document());
- if (Page* page = m_frame->page()) {
- if (ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator())
- scrollingCoordinator->notifyLayoutUpdated();
- }
-
sendResizeEventIfNeeded();
}
@@ -986,9 +981,6 @@ void FrameView::updateLayoutAndStyleForPainting()
TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "UpdateLayerTree", TRACE_EVENT_SCOPE_PROCESS, "frame", m_frame.get());
view->compositor()->updateIfNeededRecursive();
- if (view->compositor()->inCompositingMode())
- m_frame->page()->scrollingCoordinator()->updateAfterCompositingChangeIfNeeded();
-
updateCompositedSelectionBoundsIfNeeded();
invalidateTreeIfNeededRecursive();

Powered by Google App Engine
This is Rietveld 408576698