| Index: cc/test/fake_layer_tree_host_impl.cc
|
| diff --git a/cc/test/fake_layer_tree_host_impl.cc b/cc/test/fake_layer_tree_host_impl.cc
|
| index 64d0150da9f96b448745aef098ed6b2a6559266d..334ff9fa66e921175a0bc7b4d25c7fc106c67a37 100644
|
| --- a/cc/test/fake_layer_tree_host_impl.cc
|
| +++ b/cc/test/fake_layer_tree_host_impl.cc
|
| @@ -7,23 +7,19 @@
|
| namespace cc {
|
|
|
| FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(Proxy* proxy)
|
| - : LayerTreeHostImpl(LayerTreeSettings(), &client_, proxy)
|
| -{
|
| + : LayerTreeHostImpl(LayerTreeSettings(), &client_, proxy) {
|
| // Explicitly clear all debug settings.
|
| - setDebugState(LayerTreeDebugState());
|
| + SetDebugState(LayerTreeDebugState());
|
| }
|
|
|
| FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
|
| const LayerTreeSettings& settings,
|
| Proxy* proxy)
|
| - : LayerTreeHostImpl(settings, &client_, proxy)
|
| -{
|
| + : LayerTreeHostImpl(settings, &client_, proxy) {
|
| // Explicitly clear all debug settings.
|
| - setDebugState(LayerTreeDebugState());
|
| + SetDebugState(LayerTreeDebugState());
|
| }
|
|
|
| -FakeLayerTreeHostImpl::~FakeLayerTreeHostImpl()
|
| -{
|
| -}
|
| +FakeLayerTreeHostImpl::~FakeLayerTreeHostImpl() {}
|
|
|
| } // namespace cc
|
|
|