| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ | 5 #ifndef CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ |
| 6 #define CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ | 6 #define CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "cc/trees/layer_tree_host_client.h" | 9 #include "cc/trees/layer_tree_host_client.h" |
| 10 #include "cc/trees/layer_tree_host_single_thread_client.h" | 10 #include "cc/trees/layer_tree_host_single_thread_client.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 float page_scale) OVERRIDE; | 70 float page_scale) OVERRIDE; |
| 71 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) | 71 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) |
| 72 OVERRIDE; | 72 OVERRIDE; |
| 73 virtual void DidInitializeOutputSurface() OVERRIDE {} | 73 virtual void DidInitializeOutputSurface() OVERRIDE {} |
| 74 virtual void WillCommit() OVERRIDE {} | 74 virtual void WillCommit() OVERRIDE {} |
| 75 virtual void DidCommit() OVERRIDE {} | 75 virtual void DidCommit() OVERRIDE {} |
| 76 virtual void DidCommitAndDrawFrame() OVERRIDE {} | 76 virtual void DidCommitAndDrawFrame() OVERRIDE {} |
| 77 virtual void DidCompleteSwapBuffers() OVERRIDE {} | 77 virtual void DidCompleteSwapBuffers() OVERRIDE {} |
| 78 | 78 |
| 79 // cc::LayerTreeHostSingleThreadClient implementation. | 79 // cc::LayerTreeHostSingleThreadClient implementation. |
| 80 virtual void ScheduleComposite() OVERRIDE {} | |
| 81 virtual void ScheduleAnimation() OVERRIDE {} | |
| 82 virtual void DidPostSwapBuffers() OVERRIDE {} | 80 virtual void DidPostSwapBuffers() OVERRIDE {} |
| 83 virtual void DidAbortSwapBuffers() OVERRIDE {} | 81 virtual void DidAbortSwapBuffers() OVERRIDE {} |
| 84 | 82 |
| 85 private: | 83 private: |
| 86 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; | 84 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; |
| 87 | 85 |
| 88 DISALLOW_COPY_AND_ASSIGN(WebLayerTreeViewImplForTesting); | 86 DISALLOW_COPY_AND_ASSIGN(WebLayerTreeViewImplForTesting); |
| 89 }; | 87 }; |
| 90 | 88 |
| 91 } // namespace content | 89 } // namespace content |
| 92 | 90 |
| 93 #endif // CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ | 91 #endif // CONTENT_TEST_WEB_LAYER_TREE_VIEW_IMPL_FOR_TESTING_H_ |
| OLD | NEW |