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 namespace cc { | 7 namespace cc { |
8 | 8 |
9 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) { | 9 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) { |
10 layer_tree_host_ = host; | 10 layer_tree_host_ = host; |
11 } | 11 } |
12 | 12 |
13 bool FakeProxy::IsStarted() const { return true; } | 13 bool FakeProxy::IsStarted() const { return true; } |
14 | 14 |
| 15 bool FakeProxy::CommitToActiveTree() const { |
| 16 return false; |
| 17 } |
| 18 |
15 const RendererCapabilities& FakeProxy::GetRendererCapabilities() const { | 19 const RendererCapabilities& FakeProxy::GetRendererCapabilities() const { |
16 return capabilities_; | 20 return capabilities_; |
17 } | 21 } |
18 | 22 |
19 RendererCapabilities& FakeProxy::GetRendererCapabilities() { | 23 RendererCapabilities& FakeProxy::GetRendererCapabilities() { |
20 return capabilities_; | 24 return capabilities_; |
21 } | 25 } |
22 | 26 |
23 bool FakeProxy::BeginMainFrameRequested() const { return false; } | 27 bool FakeProxy::BeginMainFrameRequested() const { return false; } |
24 | 28 |
25 bool FakeProxy::CommitRequested() const { return false; } | 29 bool FakeProxy::CommitRequested() const { return false; } |
26 | 30 |
27 size_t FakeProxy::MaxPartialTextureUpdates() const { | 31 size_t FakeProxy::MaxPartialTextureUpdates() const { |
28 return max_partial_texture_updates_; | 32 return max_partial_texture_updates_; |
29 } | 33 } |
30 | 34 |
31 void FakeProxy::SetMaxPartialTextureUpdates(size_t max) { | 35 void FakeProxy::SetMaxPartialTextureUpdates(size_t max) { |
32 max_partial_texture_updates_ = max; | 36 max_partial_texture_updates_ = max; |
33 } | 37 } |
34 | 38 |
35 bool FakeProxy::SupportsImplScrolling() const { return false; } | 39 bool FakeProxy::SupportsImplScrolling() const { return false; } |
36 | 40 |
37 bool FakeProxy::MainFrameWillHappenForTesting() { | 41 bool FakeProxy::MainFrameWillHappenForTesting() { |
38 return false; | 42 return false; |
39 } | 43 } |
40 | 44 |
41 void FakeProxy::AsValueInto(base::debug::TracedValue*) const { | 45 void FakeProxy::AsValueInto(base::trace_event::TracedValue*) const { |
42 } | 46 } |
43 | 47 |
44 } // namespace cc | 48 } // namespace cc |
OLD | NEW |