| Index: cc/blimp/layer_tree_host_remote.h
|
| diff --git a/cc/blimp/layer_tree_host_remote.h b/cc/blimp/layer_tree_host_remote.h
|
| index d6ec317cb743d98943cb5216a2e6b602ee9a8a81..4e91c6879c42414a277c49b4e5274c3608fe7b67 100644
|
| --- a/cc/blimp/layer_tree_host_remote.h
|
| +++ b/cc/blimp/layer_tree_host_remote.h
|
| @@ -98,16 +98,24 @@ class CC_EXPORT LayerTreeHostRemote : public LayerTreeHost,
|
| LayerTreeHostRemote(InitParams* params,
|
| std::unique_ptr<LayerTree> layer_tree);
|
|
|
| - private:
|
| - enum class FramePipelineStage { NONE, ANIMATE, UPDATE_LAYERS, COMMIT };
|
| + LayerTreeHostClient* client() const { return client_; }
|
| + RemoteCompositorBridge* remote_compositor_bridge() const {
|
| + return remote_compositor_bridge_.get();
|
| + }
|
| +
|
| + virtual void DispatchDrawAndSwapCallbacks();
|
| + void SetTaskRunnerProviderForTesting(
|
| + std::unique_ptr<TaskRunnerProvider> task_runner_provider);
|
|
|
| // RemoteCompositorBridgeClient implementation.
|
| void BeginMainFrame() override;
|
|
|
| + private:
|
| + enum class FramePipelineStage { NONE, ANIMATE, UPDATE_LAYERS, COMMIT };
|
| +
|
| void MainFrameRequested(FramePipelineStage requested_pipeline_stage);
|
| void ScheduleMainFrameIfNecessary();
|
| void MainFrameComplete();
|
| - void DispatchDrawAndSwapCallbacks();
|
| void SerializeCurrentState(proto::LayerTreeHost* layer_tree_host_proto);
|
|
|
| const int id_;
|
|
|