Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(672)

Side by Side Diff: cc/test/fake_layer_tree_host_impl.cc

Issue 12648005: cc: Chromify the LayerTreeHostImpl class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compl Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/test/fake_layer_tree_host_impl.h ('k') | cc/test/fake_layer_tree_host_impl_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/test/fake_layer_tree_host_impl.h" 5 #include "cc/test/fake_layer_tree_host_impl.h"
6 6
7 namespace cc { 7 namespace cc {
8 8
9 FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(Proxy* proxy) 9 FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(Proxy* proxy)
10 : LayerTreeHostImpl(LayerTreeSettings(), &client_, proxy) 10 : LayerTreeHostImpl(LayerTreeSettings(), &client_, proxy) {
11 {
12 // Explicitly clear all debug settings. 11 // Explicitly clear all debug settings.
13 setDebugState(LayerTreeDebugState()); 12 SetDebugState(LayerTreeDebugState());
14 } 13 }
15 14
16 FakeLayerTreeHostImpl::FakeLayerTreeHostImpl( 15 FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
17 const LayerTreeSettings& settings, 16 const LayerTreeSettings& settings,
18 Proxy* proxy) 17 Proxy* proxy)
19 : LayerTreeHostImpl(settings, &client_, proxy) 18 : LayerTreeHostImpl(settings, &client_, proxy) {
20 {
21 // Explicitly clear all debug settings. 19 // Explicitly clear all debug settings.
22 setDebugState(LayerTreeDebugState()); 20 SetDebugState(LayerTreeDebugState());
23 } 21 }
24 22
25 FakeLayerTreeHostImpl::~FakeLayerTreeHostImpl() 23 FakeLayerTreeHostImpl::~FakeLayerTreeHostImpl() {}
26 {
27 }
28 24
29 } // namespace cc 25 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_layer_tree_host_impl.h ('k') | cc/test/fake_layer_tree_host_impl_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698