Chromium Code Reviews| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "cc/input/input_handler.h" | 10 #include "cc/input/input_handler.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 void WillCommit() override {} | 47 void WillCommit() override {} |
| 48 void DidCommit() override {} | 48 void DidCommit() override {} |
| 49 void DidCommitAndDrawFrame() override {} | 49 void DidCommitAndDrawFrame() override {} |
| 50 void DidCompleteSwapBuffers() override {} | 50 void DidCompleteSwapBuffers() override {} |
| 51 void DidCompletePageScaleAnimation() override {} | 51 void DidCompletePageScaleAnimation() override {} |
| 52 | 52 |
| 53 // LayerTreeHostSingleThreadClient implementation. | 53 // LayerTreeHostSingleThreadClient implementation. |
| 54 void DidPostSwapBuffers() override {} | 54 void DidPostSwapBuffers() override {} |
| 55 void DidAbortSwapBuffers() override {} | 55 void DidAbortSwapBuffers() override {} |
| 56 | 56 |
| 57 void ReportFixedRasterScaleUseCounters( | |
|
danakj
2016/05/05 00:09:49
this should be part of the LayerTreeHostClient imp
vmpstr
2016/05/05 01:33:50
Done.
| |
| 58 bool has_blurry_content, | |
| 59 bool has_potential_performance_regression) override {} | |
| 60 | |
| 57 private: | 61 private: |
| 58 bool use_software_rendering_; | 62 bool use_software_rendering_; |
| 59 bool use_delegating_renderer_; | 63 bool use_delegating_renderer_; |
| 60 | 64 |
| 61 LayerTreeHost* host_; | 65 LayerTreeHost* host_; |
| 62 }; | 66 }; |
| 63 | 67 |
| 64 } // namespace cc | 68 } // namespace cc |
| 65 | 69 |
| 66 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ | 70 #endif // CC_TEST_FAKE_LAYER_TREE_HOST_CLIENT_H_ |
| OLD | NEW |