| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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_TREES_LAYER_TREE_HOST_H_ | 5 #ifndef CC_TREES_LAYER_TREE_HOST_H_ |
| 6 #define CC_TREES_LAYER_TREE_HOST_H_ | 6 #define CC_TREES_LAYER_TREE_HOST_H_ |
| 7 | 7 |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <list> | 9 #include <list> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 } | 105 } |
| 106 void DidBeginMainFrame(); | 106 void DidBeginMainFrame(); |
| 107 void BeginMainFrame(const BeginFrameArgs& args); | 107 void BeginMainFrame(const BeginFrameArgs& args); |
| 108 void AnimateLayers(base::TimeTicks monotonic_frame_begin_time); | 108 void AnimateLayers(base::TimeTicks monotonic_frame_begin_time); |
| 109 void DidStopFlinging(); | 109 void DidStopFlinging(); |
| 110 void Layout(); | 110 void Layout(); |
| 111 void BeginCommitOnImplThread(LayerTreeHostImpl* host_impl); | 111 void BeginCommitOnImplThread(LayerTreeHostImpl* host_impl); |
| 112 void FinishCommitOnImplThread(LayerTreeHostImpl* host_impl); | 112 void FinishCommitOnImplThread(LayerTreeHostImpl* host_impl); |
| 113 void WillCommit(); | 113 void WillCommit(); |
| 114 void CommitComplete(); | 114 void CommitComplete(); |
| 115 scoped_ptr<OutputSurface> CreateOutputSurface(); | 115 void SetOutputSurface(scoped_ptr<OutputSurface> output_surface); |
| 116 void RequestNewOutputSurface(); |
| 116 virtual scoped_ptr<LayerTreeHostImpl> CreateLayerTreeHostImpl( | 117 virtual scoped_ptr<LayerTreeHostImpl> CreateLayerTreeHostImpl( |
| 117 LayerTreeHostImplClient* client); | 118 LayerTreeHostImplClient* client); |
| 118 void DidLoseOutputSurface(); | 119 void DidLoseOutputSurface(); |
| 119 bool output_surface_lost() const { return output_surface_lost_; } | 120 bool output_surface_lost() const { return output_surface_lost_; } |
| 120 virtual void OnCreateAndInitializeOutputSurfaceAttempted(bool success); | 121 virtual void OnCreateAndInitializeOutputSurfaceAttempted(bool success); |
| 121 void DidCommitAndDrawFrame() { client_->DidCommitAndDrawFrame(); } | 122 void DidCommitAndDrawFrame() { client_->DidCommitAndDrawFrame(); } |
| 122 void DidCompleteSwapBuffers() { client_->DidCompleteSwapBuffers(); } | 123 void DidCompleteSwapBuffers() { client_->DidCompleteSwapBuffers(); } |
| 123 void DeleteContentsTexturesOnImplThread(ResourceProvider* resource_provider); | 124 void DeleteContentsTexturesOnImplThread(ResourceProvider* resource_provider); |
| 124 bool UpdateLayers(ResourceUpdateQueue* queue); | 125 bool UpdateLayers(ResourceUpdateQueue* queue); |
| 125 | 126 |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 | 456 |
| 456 ScopedPtrVector<SwapPromise> swap_promise_list_; | 457 ScopedPtrVector<SwapPromise> swap_promise_list_; |
| 457 std::set<SwapPromiseMonitor*> swap_promise_monitor_; | 458 std::set<SwapPromiseMonitor*> swap_promise_monitor_; |
| 458 | 459 |
| 459 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 460 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
| 460 }; | 461 }; |
| 461 | 462 |
| 462 } // namespace cc | 463 } // namespace cc |
| 463 | 464 |
| 464 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 465 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
| OLD | NEW |