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

Unified Diff: third_party/WebKit/Source/web/CompositorProxyClientImpl.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/web/CompositorProxyClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp b/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp
index 4a621c5f1ab5d7c8d7e5e260394e8bf827287093..9da9b5f326b7641318c2e8aa66b521994b20e932 100644
--- a/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp
+++ b/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp
@@ -36,8 +36,9 @@ private:
HeapHashSet<WeakMember<CompositorProxy>>& m_proxies;
};
-CompositorProxyClientImpl::CompositorProxyClientImpl(CompositorMutatorImpl* mutator)
- : m_mutator(mutator)
+CompositorProxyClientImpl::CompositorProxyClientImpl(CompositorMutatorImpl* mutator, WorkerClients& clients)
+ : CompositorProxyClient(clients)
+ , m_mutator(mutator)
, m_globalScope(nullptr)
{
}
« no previous file with comments | « third_party/WebKit/Source/web/CompositorProxyClientImpl.h ('k') | third_party/WebKit/Source/web/WebFrameWidgetBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698