Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
index c1269317393454dffa9da62f95d05576233f3e96..9a17ec40b9561d40dea9730978cb6063a7c4af23 100644 |
--- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp |
@@ -411,14 +411,14 @@ void WebFrameWidgetImpl::scheduleAnimation() |
m_client->scheduleAnimation(); |
} |
-CompositorProxyClient* WebFrameWidgetImpl::createCompositorProxyClient() |
+CompositorProxyClient* WebFrameWidgetImpl::createCompositorProxyClient(WorkerClients& clients) |
{ |
if (!m_mutator) { |
std::unique_ptr<CompositorMutatorClient> mutatorClient = CompositorMutatorImpl::createClient(); |
m_mutator = static_cast<CompositorMutatorImpl*>(mutatorClient->mutator()); |
m_layerTreeView->setMutatorClient(std::move(mutatorClient)); |
} |
- return new CompositorProxyClientImpl(m_mutator); |
+ return new CompositorProxyClientImpl(m_mutator, clients); |
} |
void WebFrameWidgetImpl::applyViewportDeltas( |