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

Unified Diff: third_party/WebKit/Source/web/WebViewFrameWidget.cpp

Issue 2036403002: Always use the WebFrameWidget when attaching the root graphics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adding comments Created 4 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: third_party/WebKit/Source/web/WebViewFrameWidget.cpp
diff --git a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
index e75d9c8006404980732ff1ec4d0ca3b24b922884..a83186345abdec4826aaefd5ab7f239b815c91b7 100644
--- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
+++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
@@ -265,4 +265,19 @@ CompositorProxyClient* WebViewFrameWidget::createCompositorProxyClient()
return m_webView->createCompositorProxyClient();
}
+void WebViewFrameWidget::setRootGraphicsLayer(GraphicsLayer* layer)
+{
+ m_webView->setRootGraphicsLayer(layer);
+}
+
+void WebViewFrameWidget::attachCompositorAnimationTimeline(CompositorAnimationTimeline* compositorTimeline)
+{
+ m_webView->attachCompositorAnimationTimeline(compositorTimeline);
+}
+
+void WebViewFrameWidget::detachCompositorAnimationTimeline(CompositorAnimationTimeline* compositorTimeline)
+{
+ m_webView->detachCompositorAnimationTimeline(compositorTimeline);
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698