| Index: cc/test/fake_layer_tree_host_client.h
|
| diff --git a/cc/test/fake_layer_tree_host_client.h b/cc/test/fake_layer_tree_host_client.h
|
| index 1684e3eaa1114119b3e7476c43cf607109babb69..d99bdb3739992f3157121c062cdc0902e4808787 100644
|
| --- a/cc/test/fake_layer_tree_host_client.h
|
| +++ b/cc/test/fake_layer_tree_host_client.h
|
| @@ -18,13 +18,7 @@ class OutputSurface;
|
| class FakeLayerTreeHostClient : public LayerTreeHostClient,
|
| public LayerTreeHostSingleThreadClient {
|
| public:
|
| - enum RendererOptions {
|
| - DIRECT_3D,
|
| - DIRECT_SOFTWARE,
|
| - DELEGATED_3D,
|
| - DELEGATED_SOFTWARE
|
| - };
|
| - explicit FakeLayerTreeHostClient(RendererOptions options);
|
| + FakeLayerTreeHostClient();
|
| ~FakeLayerTreeHostClient() override;
|
|
|
| // Caller responsible for unsetting this and maintaining the host's lifetime.
|
| @@ -55,10 +49,7 @@ class FakeLayerTreeHostClient : public LayerTreeHostClient,
|
| void DidAbortSwapBuffers() override {}
|
|
|
| private:
|
| - bool use_software_rendering_;
|
| - bool use_delegating_renderer_;
|
| -
|
| - LayerTreeHost* host_;
|
| + LayerTreeHost* host_ = nullptr;
|
| };
|
|
|
| } // namespace cc
|
|
|