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

Unified Diff: third_party/WebKit/Source/core/dom/CompositorProxyClient.h

Issue 1900423004: [compositorworker] Register compositor proxies with proxy client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix layout test Created 4 years, 6 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/dom/CompositorProxyClient.h
diff --git a/third_party/WebKit/Source/core/dom/CompositorProxyClient.h b/third_party/WebKit/Source/core/dom/CompositorProxyClient.h
index 9f9cea1630df55fab6cf18a20aba27a882066311..ea6e09c250fbb2c22c847facaacd7ef2498e03b2 100644
--- a/third_party/WebKit/Source/core/dom/CompositorProxyClient.h
+++ b/third_party/WebKit/Source/core/dom/CompositorProxyClient.h
@@ -30,6 +30,8 @@ public:
virtual void setGlobalScope(WorkerGlobalScope*) = 0;
virtual void requestAnimationFrame() = 0;
+ virtual void registerCompositorProxy(CompositorProxy*) = 0;
+ virtual void unregisterCompositorProxy(CompositorProxy*) = 0;
jbroman 2016/06/10 17:45:42 Does this method have any call sites? I see the re
majidvp 2016/06/10 19:17:50 It should be used in |CompositorProxy::disconnet|
};
CORE_EXPORT void provideCompositorProxyClientTo(WorkerClients*, CompositorProxyClient*);

Powered by Google App Engine
This is Rietveld 408576698