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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 } | 102 } |
103 void DidBeginMainFrame(); | 103 void DidBeginMainFrame(); |
104 void UpdateClientAnimations(base::TimeTicks monotonic_frame_begin_time); | 104 void UpdateClientAnimations(base::TimeTicks monotonic_frame_begin_time); |
105 void AnimateLayers(base::TimeTicks monotonic_frame_begin_time); | 105 void AnimateLayers(base::TimeTicks monotonic_frame_begin_time); |
106 void DidStopFlinging(); | 106 void DidStopFlinging(); |
107 void Layout(); | 107 void Layout(); |
108 void BeginCommitOnImplThread(LayerTreeHostImpl* host_impl); | 108 void BeginCommitOnImplThread(LayerTreeHostImpl* host_impl); |
109 void FinishCommitOnImplThread(LayerTreeHostImpl* host_impl); | 109 void FinishCommitOnImplThread(LayerTreeHostImpl* host_impl); |
110 void WillCommit(); | 110 void WillCommit(); |
111 void CommitComplete(); | 111 void CommitComplete(); |
112 scoped_ptr<OutputSurface> CreateOutputSurface(); | 112 void SetOutputSurface(scoped_ptr<OutputSurface>); |
| 113 void RequestNewOutputSurface(); |
113 virtual scoped_ptr<LayerTreeHostImpl> CreateLayerTreeHostImpl( | 114 virtual scoped_ptr<LayerTreeHostImpl> CreateLayerTreeHostImpl( |
114 LayerTreeHostImplClient* client); | 115 LayerTreeHostImplClient* client); |
115 void DidLoseOutputSurface(); | 116 void DidLoseOutputSurface(); |
116 bool output_surface_lost() const { return output_surface_lost_; } | 117 bool output_surface_lost() const { return output_surface_lost_; } |
117 virtual void OnCreateAndInitializeOutputSurfaceAttempted(bool success); | 118 virtual void OnCreateAndInitializeOutputSurfaceAttempted(bool success); |
118 void DidCommitAndDrawFrame() { client_->DidCommitAndDrawFrame(); } | 119 void DidCommitAndDrawFrame() { client_->DidCommitAndDrawFrame(); } |
119 void DidCompleteSwapBuffers() { client_->DidCompleteSwapBuffers(); } | 120 void DidCompleteSwapBuffers() { client_->DidCompleteSwapBuffers(); } |
120 void DeleteContentsTexturesOnImplThread(ResourceProvider* resource_provider); | 121 void DeleteContentsTexturesOnImplThread(ResourceProvider* resource_provider); |
121 bool UpdateLayers(ResourceUpdateQueue* queue); | 122 bool UpdateLayers(ResourceUpdateQueue* queue); |
122 | 123 |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 | 444 |
444 ScopedPtrVector<SwapPromise> swap_promise_list_; | 445 ScopedPtrVector<SwapPromise> swap_promise_list_; |
445 std::set<SwapPromiseMonitor*> swap_promise_monitor_; | 446 std::set<SwapPromiseMonitor*> swap_promise_monitor_; |
446 | 447 |
447 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); | 448 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); |
448 }; | 449 }; |
449 | 450 |
450 } // namespace cc | 451 } // namespace cc |
451 | 452 |
452 #endif // CC_TREES_LAYER_TREE_HOST_H_ | 453 #endif // CC_TREES_LAYER_TREE_HOST_H_ |
OLD | NEW |