OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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.h" | 5 #include "cc/test/fake_layer_tree_host.h" |
6 | 6 |
7 namespace cc { | 7 namespace cc { |
8 FakeLayerTreeHost::FakeLayerTreeHost(LayerTreeHostClient* client, | 8 FakeLayerTreeHost::FakeLayerTreeHost(FakeLayerTreeHostClient* client, |
danakj
2014/06/20 23:36:34
Maybe we should consider having FakeLayerTreeHost
enne (OOO)
2014/06/23 16:57:39
I went down that path a little, but it was an even
danakj
2014/06/25 17:43:08
Darn :( I don't like forcing so many unrelated-to-
| |
9 const LayerTreeSettings& settings) | 9 const LayerTreeSettings& settings) |
10 : LayerTreeHost(client, NULL, settings), | 10 : LayerTreeHost(client, NULL, settings), |
11 client_(client), | |
11 host_impl_(settings, &proxy_, &manager_), | 12 host_impl_(settings, &proxy_, &manager_), |
12 needs_commit_(false) {} | 13 needs_commit_(false) { |
13 | 14 client_->SetLayerTreeHost(this); |
14 scoped_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create() { | |
15 static FakeLayerTreeHostClient client(FakeLayerTreeHostClient::DIRECT_3D); | |
16 static LayerTreeSettings settings; | |
17 return make_scoped_ptr(new FakeLayerTreeHost(&client, settings)); | |
18 } | 15 } |
19 | 16 |
20 scoped_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create( | 17 scoped_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create( |
18 FakeLayerTreeHostClient* client) { | |
19 LayerTreeSettings settings; | |
20 return make_scoped_ptr(new FakeLayerTreeHost(client, settings)); | |
21 } | |
22 | |
23 scoped_ptr<FakeLayerTreeHost> FakeLayerTreeHost::Create( | |
24 FakeLayerTreeHostClient* client, | |
21 const LayerTreeSettings& settings) { | 25 const LayerTreeSettings& settings) { |
22 static FakeLayerTreeHostClient client(FakeLayerTreeHostClient::DIRECT_3D); | 26 return make_scoped_ptr(new FakeLayerTreeHost(client, settings)); |
23 return make_scoped_ptr(new FakeLayerTreeHost(&client, settings)); | 27 } |
28 | |
29 FakeLayerTreeHost::~FakeLayerTreeHost() { | |
30 client_->SetLayerTreeHost(NULL); | |
24 } | 31 } |
25 | 32 |
26 void FakeLayerTreeHost::SetNeedsCommit() { needs_commit_ = true; } | 33 void FakeLayerTreeHost::SetNeedsCommit() { needs_commit_ = true; } |
27 | 34 |
28 LayerImpl* FakeLayerTreeHost::CommitAndCreateLayerImplTree() { | 35 LayerImpl* FakeLayerTreeHost::CommitAndCreateLayerImplTree() { |
29 scoped_ptr<LayerImpl> old_root_layer_impl = active_tree()->DetachLayerTree(); | 36 scoped_ptr<LayerImpl> old_root_layer_impl = active_tree()->DetachLayerTree(); |
30 | 37 |
31 scoped_ptr<LayerImpl> layer_impl = TreeSynchronizer::SynchronizeTrees( | 38 scoped_ptr<LayerImpl> layer_impl = TreeSynchronizer::SynchronizeTrees( |
32 root_layer(), old_root_layer_impl.Pass(), active_tree()); | 39 root_layer(), old_root_layer_impl.Pass(), active_tree()); |
33 TreeSynchronizer::PushProperties(root_layer(), layer_impl.get()); | 40 TreeSynchronizer::PushProperties(root_layer(), layer_impl.get()); |
34 | 41 |
35 active_tree()->SetRootLayer(layer_impl.Pass()); | 42 active_tree()->SetRootLayer(layer_impl.Pass()); |
36 return active_tree()->root_layer(); | 43 return active_tree()->root_layer(); |
37 } | 44 } |
38 | 45 |
39 } // namespace cc | 46 } // namespace cc |
OLD | NEW |