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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetImpl.h

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: address feedback Created 4 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: third_party/WebKit/Source/web/WebFrameWidgetImpl.h
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.h b/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
index 688894938800120b7336fa0592a5cb64cb0b96df..f7143c5962175ce4a414f943cab9bed352115a81 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.h
@@ -136,7 +136,7 @@ class WebFrameWidgetImpl final
// WebFrameWidgetBase overrides:
bool forSubframe() const override { return true; }
void scheduleAnimation() override;
- CompositorProxyClient* createCompositorProxyClient() override;
+ CompositorProxyClientFactory* compositorProxyClientFactory() override;
WebWidgetClient* client() const override { return m_client; }
void setRootGraphicsLayer(GraphicsLayer*) override;
void setRootLayer(WebLayer*) override;
@@ -215,6 +215,7 @@ class WebFrameWidgetImpl final
// compositor thread. The LayerTreeHostImpl is indirectly owned by this
// class so this pointer should be valid until this class is destructed.
CrossThreadPersistent<CompositorMutatorImpl> m_mutator;
+ Member<CompositorProxyClientFactoryImpl> m_proxyClientFactory;
WebLayerTreeView* m_layerTreeView;
WebLayer* m_rootLayer;

Powered by Google App Engine
This is Rietveld 408576698