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

Unified Diff: third_party/WebKit/Source/core/page/Page.cpp

Issue 2631853002: Give OOPIF FrameViews their own scroll animation timelines and hosts (Closed)
Patch Set: Fixes from bokan comments Created 3 years, 11 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: third_party/WebKit/Source/core/page/Page.cpp
diff --git a/third_party/WebKit/Source/core/page/Page.cpp b/third_party/WebKit/Source/core/page/Page.cpp
index 50684c3e4732bfb1bb176a7f1530508540e1bb8e..8682e085f787a1c9003ba1ef308626484434e329 100644
--- a/third_party/WebKit/Source/core/page/Page.cpp
+++ b/third_party/WebKit/Source/core/page/Page.cpp
@@ -510,14 +510,16 @@ DEFINE_TRACE(Page) {
PageVisibilityNotifier::trace(visitor);
}
-void Page::layerTreeViewInitialized(WebLayerTreeView& layerTreeView) {
+void Page::layerTreeViewInitialized(WebLayerTreeView& layerTreeView,
+ FrameView* view) {
if (scrollingCoordinator())
- scrollingCoordinator()->layerTreeViewInitialized(layerTreeView);
+ scrollingCoordinator()->layerTreeViewInitialized(layerTreeView, view);
}
-void Page::willCloseLayerTreeView(WebLayerTreeView& layerTreeView) {
+void Page::willCloseLayerTreeView(WebLayerTreeView& layerTreeView,
+ FrameView* view) {
if (m_scrollingCoordinator)
- m_scrollingCoordinator->willCloseLayerTreeView(layerTreeView);
+ m_scrollingCoordinator->willCloseLayerTreeView(layerTreeView, view);
}
void Page::willBeDestroyed() {
« no previous file with comments | « third_party/WebKit/Source/core/page/Page.h ('k') | third_party/WebKit/Source/core/page/scrolling/ScrollingCoordinator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698