diff options
author | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-13 19:06:27 +0000 |
---|---|---|
committer | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-13 19:06:27 +0000 |
commit | c1bb5af2c3312280b17ac23a36dff4d366da3cea (patch) | |
tree | 37994afcc86b6de725429a2670e433a590032908 /cc/test/fake_layer_tree_host_impl.cc | |
parent | 105b8cdd6bceee8ee86499ae377186ff1ec7df7b (diff) | |
download | chromium_src-c1bb5af2c3312280b17ac23a36dff4d366da3cea.zip chromium_src-c1bb5af2c3312280b17ac23a36dff4d366da3cea.tar.gz chromium_src-c1bb5af2c3312280b17ac23a36dff4d366da3cea.tar.bz2 |
cc: Chromify the LayerTreeHostImpl class.
Style-only change. Make the LayerTreeHostImpl and InputHandlerClient classes
follow chromium style.
Review URL: https://codereview.chromium.org/12648005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187908 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_layer_tree_host_impl.cc')
-rw-r--r-- | cc/test/fake_layer_tree_host_impl.cc | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/cc/test/fake_layer_tree_host_impl.cc b/cc/test/fake_layer_tree_host_impl.cc index 64d0150..334ff9f 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 |