OLD | NEW |
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_proxy.h" | 5 #include "cc/test/fake_proxy.h" |
6 | 6 |
7 #include "cc/animation/layer_tree_mutator.h" | 7 #include "cc/animation/layer_tree_mutator.h" |
8 | 8 |
9 namespace cc { | 9 namespace cc { |
10 | 10 |
11 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) { | 11 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) { |
12 layer_tree_host_ = host; | 12 layer_tree_host_ = host; |
13 } | 13 } |
14 | 14 |
15 bool FakeProxy::IsStarted() const { return true; } | 15 bool FakeProxy::IsStarted() const { return true; } |
16 | 16 |
17 bool FakeProxy::CommitToActiveTree() const { | 17 bool FakeProxy::CommitToActiveTree() const { |
18 return false; | 18 return false; |
19 } | 19 } |
20 | 20 |
| 21 const RendererCapabilities& FakeProxy::GetRendererCapabilities() const { |
| 22 return capabilities_; |
| 23 } |
| 24 |
| 25 RendererCapabilities& FakeProxy::GetRendererCapabilities() { |
| 26 return capabilities_; |
| 27 } |
| 28 |
21 void FakeProxy::ReleaseOutputSurface() {} | 29 void FakeProxy::ReleaseOutputSurface() {} |
22 | 30 |
23 bool FakeProxy::BeginMainFrameRequested() const { return false; } | 31 bool FakeProxy::BeginMainFrameRequested() const { return false; } |
24 | 32 |
25 bool FakeProxy::CommitRequested() const { return false; } | 33 bool FakeProxy::CommitRequested() const { return false; } |
26 | 34 |
27 void FakeProxy::SetMutator(std::unique_ptr<LayerTreeMutator> mutator) {} | 35 void FakeProxy::SetMutator(std::unique_ptr<LayerTreeMutator> mutator) {} |
28 | 36 |
29 bool FakeProxy::SupportsImplScrolling() const { | 37 bool FakeProxy::SupportsImplScrolling() const { |
30 return true; | 38 return true; |
31 } | 39 } |
32 | 40 |
33 bool FakeProxy::MainFrameWillHappenForTesting() { | 41 bool FakeProxy::MainFrameWillHappenForTesting() { |
34 return false; | 42 return false; |
35 } | 43 } |
36 | 44 |
37 } // namespace cc | 45 } // namespace cc |
OLD | NEW |