| 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 #ifndef CC_TEST_FAKE_LAYER_TREE_HOST_IMPL_H_ | 5 #ifndef CC_TEST_FAKE_LAYER_TREE_HOST_IMPL_H_ |
| 6 #define CC_TEST_FAKE_LAYER_TREE_HOST_IMPL_H_ | 6 #define CC_TEST_FAKE_LAYER_TREE_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/sequenced_task_runner.h" |
| 8 #include "cc/test/fake_layer_tree_host_impl_client.h" | 9 #include "cc/test/fake_layer_tree_host_impl_client.h" |
| 9 #include "cc/test/fake_rendering_stats_instrumentation.h" | 10 #include "cc/test/fake_rendering_stats_instrumentation.h" |
| 10 #include "cc/trees/layer_tree_host_impl.h" | 11 #include "cc/trees/layer_tree_host_impl.h" |
| 11 #include "cc/trees/single_thread_proxy.h" | 12 #include "cc/trees/single_thread_proxy.h" |
| 12 | 13 |
| 13 namespace cc { | 14 namespace cc { |
| 14 | 15 |
| 15 class AnimationHost; | 16 class AnimationHost; |
| 16 | 17 |
| 17 class FakeLayerTreeHostImpl : public LayerTreeHostImpl { | 18 class FakeLayerTreeHostImpl : public LayerTreeHostImpl { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 61 |
| 61 private: | 62 private: |
| 62 FakeLayerTreeHostImplClient client_; | 63 FakeLayerTreeHostImplClient client_; |
| 63 FakeRenderingStatsInstrumentation stats_instrumentation_; | 64 FakeRenderingStatsInstrumentation stats_instrumentation_; |
| 64 bool notify_tile_state_changed_called_; | 65 bool notify_tile_state_changed_called_; |
| 65 }; | 66 }; |
| 66 | 67 |
| 67 } // namespace cc | 68 } // namespace cc |
| 68 | 69 |
| 69 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_IMPL_H_ | 70 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_IMPL_H_ |
| OLD | NEW |