| Index: cc/trees/proxy_main.h
|
| diff --git a/cc/trees/proxy_main.h b/cc/trees/proxy_main.h
|
| index 9108d84ca5fe1e0403528dd58b3772364408c091..cf1806793f7f5ed3fef3442a0633a3f7792627e7 100644
|
| --- a/cc/trees/proxy_main.h
|
| +++ b/cc/trees/proxy_main.h
|
| @@ -19,7 +19,7 @@ namespace cc {
|
| class AnimationEvents;
|
| class BeginFrameSource;
|
| class ChannelMain;
|
| -class LayerTreeHost;
|
| +class LayerTreeHostInProcess;
|
| class LayerTreeMutator;
|
|
|
| // This class aggregates all interactions that the impl side of the compositor
|
| @@ -28,12 +28,12 @@ class LayerTreeMutator;
|
| class CC_EXPORT ProxyMain : public Proxy {
|
| public:
|
| static std::unique_ptr<ProxyMain> CreateThreaded(
|
| - LayerTreeHost* layer_tree_host,
|
| + LayerTreeHostInProcess* layer_tree_host,
|
| TaskRunnerProvider* task_runner_provider);
|
|
|
| static std::unique_ptr<ProxyMain> CreateRemote(
|
| RemoteProtoChannel* remote_proto_channel,
|
| - LayerTreeHost* layer_tree_host,
|
| + LayerTreeHostInProcess* layer_tree_host,
|
| TaskRunnerProvider* task_runner_provider);
|
|
|
| ~ProxyMain() override;
|
| @@ -71,7 +71,7 @@ class CC_EXPORT ProxyMain : public Proxy {
|
| }
|
|
|
| protected:
|
| - ProxyMain(LayerTreeHost* layer_tree_host,
|
| + ProxyMain(LayerTreeHostInProcess* layer_tree_host,
|
| TaskRunnerProvider* task_runner_provider);
|
|
|
| private:
|
| @@ -112,7 +112,7 @@ class CC_EXPORT ProxyMain : public Proxy {
|
| CommitPipelineStage required_stage);
|
| bool IsMainThread() const;
|
|
|
| - LayerTreeHost* layer_tree_host_;
|
| + LayerTreeHostInProcess* layer_tree_host_;
|
|
|
| TaskRunnerProvider* task_runner_provider_;
|
|
|
|
|