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

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

Issue 2150443002: Supplement should have a Member to the corresponding Supplementable object (Part 1) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temp Created 4 years, 4 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.cpp
diff --git a/third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp b/third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp
index ff103f8f7ff55f80ed5f0c62debf68722c441cad..1b390eec52bdc753bf4ccb05fa917ec55b5d2e10 100644
--- a/third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp
+++ b/third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp
@@ -18,6 +18,11 @@ const char* CompositorProxyClient::supplementName()
return "CompositorProxyClient";
}
+CompositorProxyClient::CompositorProxyClient(WorkerClients& clients)
+ : Supplement<WorkerClients>(clients)
+{
+}
+
void provideCompositorProxyClientTo(WorkerClients* clients, CompositorProxyClient* client)
{
clients->provideSupplement(CompositorProxyClient::supplementName(), client);
« no previous file with comments | « third_party/WebKit/Source/core/dom/CompositorProxyClient.h ('k') | third_party/WebKit/Source/core/frame/Navigator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698