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

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

Issue 2654883002: Give OOPIF FrameViews their own scroll animation timelines and hosts (Closed)
Patch Set: 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 671df370fac839db6c8234d103ea9fd01ef244f4..a48697de757aa2bd4fcfbb31c417ff134cb9945c 100644
--- a/third_party/WebKit/Source/core/page/Page.cpp
+++ b/third_party/WebKit/Source/core/page/Page.cpp
@@ -507,14 +507,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