| Index: cc/trees/proxy_impl.h
|
| diff --git a/cc/trees/proxy_impl.h b/cc/trees/proxy_impl.h
|
| index 35ee0ccac55e42ea1f02059f788db08d4453ba00..f83a6a92f1a661d3d89c91b775d7112cda9cb9e5 100644
|
| --- a/cc/trees/proxy_impl.h
|
| +++ b/cc/trees/proxy_impl.h
|
| @@ -16,6 +16,7 @@
|
| #include "cc/trees/layer_tree_host_impl.h"
|
|
|
| namespace cc {
|
| +class LayerTreeHostInProcess;
|
|
|
| // This class aggregates all the interactions that the main side of the
|
| // compositor needs to have with the impl side. It is created and owned by the
|
| @@ -24,7 +25,7 @@ class CC_EXPORT ProxyImpl : public NON_EXPORTED_BASE(LayerTreeHostImplClient),
|
| public NON_EXPORTED_BASE(SchedulerClient) {
|
| public:
|
| ProxyImpl(ChannelImpl* channel_impl,
|
| - LayerTreeHost* layer_tree_host,
|
| + LayerTreeHostInProcess* layer_tree_host,
|
| TaskRunnerProvider* task_runner_provider,
|
| std::unique_ptr<BeginFrameSource> external_begin_frame_source);
|
| ~ProxyImpl() override;
|
| @@ -48,7 +49,7 @@ class CC_EXPORT ProxyImpl : public NON_EXPORTED_BASE(LayerTreeHostImplClient),
|
| void ReleaseOutputSurfaceOnImpl(CompletionEvent* completion);
|
| void FinishGLOnImpl(CompletionEvent* completion);
|
| void NotifyReadyToCommitOnImpl(CompletionEvent* completion,
|
| - LayerTreeHost* layer_tree_host,
|
| + LayerTreeHostInProcess* layer_tree_host,
|
| base::TimeTicks main_thread_start_time,
|
| bool hold_commit_for_activation);
|
|
|
| @@ -61,7 +62,7 @@ class CC_EXPORT ProxyImpl : public NON_EXPORTED_BASE(LayerTreeHostImplClient),
|
| struct BlockedMainCommitOnly {
|
| BlockedMainCommitOnly();
|
| ~BlockedMainCommitOnly();
|
| - LayerTreeHost* layer_tree_host;
|
| + LayerTreeHostInProcess* layer_tree_host;
|
| };
|
|
|
| // LayerTreeHostImplClient implementation
|
|
|