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

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

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: Remove unnecessary PLATFORM_EXPORT Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2e935aa649a0620727bc5c641ff1cf02233a8d6b..4f3ff528984104287675dfecfded2b2aef274f77 100644
--- a/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
+++ b/third_party/WebKit/Source/web/WebViewFrameWidget.cpp
@@ -215,8 +215,14 @@ void WebViewFrameWidget::scheduleAnimation() {
m_webView->scheduleAnimationForWidget();
}
-CompositorProxyClient* WebViewFrameWidget::createCompositorProxyClient() {
- return m_webView->createCompositorProxyClient();
+CompositorWorkerProxyClient*
+WebViewFrameWidget::createCompositorWorkerProxyClient() {
+ return m_webView->createCompositorWorkerProxyClient();
+}
+
+AnimationWorkletProxyClient*
+WebViewFrameWidget::createAnimationWorkletProxyClient() {
+ return m_webView->createAnimationWorkletProxyClient();
}
void WebViewFrameWidget::setRootGraphicsLayer(GraphicsLayer* layer) {
« no previous file with comments | « third_party/WebKit/Source/web/WebViewFrameWidget.h ('k') | third_party/WebKit/Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698