| 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_CLIENT_H_ | 5 #ifndef CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ |
| 6 #define CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ | 6 #define CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include <memory> |
| 9 |
| 9 #include "cc/input/input_handler.h" | 10 #include "cc/input/input_handler.h" |
| 10 #include "cc/test/test_context_provider.h" | 11 #include "cc/test/test_context_provider.h" |
| 11 #include "cc/trees/layer_tree_host_client.h" | 12 #include "cc/trees/layer_tree_host_client.h" |
| 12 #include "cc/trees/layer_tree_host_single_thread_client.h" | 13 #include "cc/trees/layer_tree_host_single_thread_client.h" |
| 13 | 14 |
| 14 namespace cc { | 15 namespace cc { |
| 15 class OutputSurface; | 16 class OutputSurface; |
| 16 | 17 |
| 17 class FakeLayerTreeHostClient : public LayerTreeHostClient, | 18 class FakeLayerTreeHostClient : public LayerTreeHostClient, |
| 18 public LayerTreeHostSingleThreadClient { | 19 public LayerTreeHostSingleThreadClient { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 42 float top_controls_delta) override {} | 43 float top_controls_delta) override {} |
| 43 void RequestNewOutputSurface() override; | 44 void RequestNewOutputSurface() override; |
| 44 void DidInitializeOutputSurface() override {} | 45 void DidInitializeOutputSurface() override {} |
| 45 void DidFailToInitializeOutputSurface() override; | 46 void DidFailToInitializeOutputSurface() override; |
| 46 void WillCommit() override {} | 47 void WillCommit() override {} |
| 47 void DidCommit() override {} | 48 void DidCommit() override {} |
| 48 void DidCommitAndDrawFrame() override {} | 49 void DidCommitAndDrawFrame() override {} |
| 49 void DidCompleteSwapBuffers() override {} | 50 void DidCompleteSwapBuffers() override {} |
| 50 void DidCompletePageScaleAnimation() override {} | 51 void DidCompletePageScaleAnimation() override {} |
| 51 void RecordFrameTimingEvents( | 52 void RecordFrameTimingEvents( |
| 52 scoped_ptr<FrameTimingTracker::CompositeTimingSet> composite_events, | 53 std::unique_ptr<FrameTimingTracker::CompositeTimingSet> composite_events, |
| 53 scoped_ptr<FrameTimingTracker::MainFrameTimingSet> main_frame_events) | 54 std::unique_ptr<FrameTimingTracker::MainFrameTimingSet> main_frame_events) |
| 54 override {} | 55 override {} |
| 55 | 56 |
| 56 // LayerTreeHostSingleThreadClient implementation. | 57 // LayerTreeHostSingleThreadClient implementation. |
| 57 void DidPostSwapBuffers() override {} | 58 void DidPostSwapBuffers() override {} |
| 58 void DidAbortSwapBuffers() override {} | 59 void DidAbortSwapBuffers() override {} |
| 59 | 60 |
| 60 private: | 61 private: |
| 61 bool use_software_rendering_; | 62 bool use_software_rendering_; |
| 62 bool use_delegating_renderer_; | 63 bool use_delegating_renderer_; |
| 63 | 64 |
| 64 LayerTreeHost* host_; | 65 LayerTreeHost* host_; |
| 65 }; | 66 }; |
| 66 | 67 |
| 67 } // namespace cc | 68 } // namespace cc |
| 68 | 69 |
| 69 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ | 70 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ |
| OLD | NEW |