Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: cc/trees/layer_tree_host.h

Issue 348093004: Make cc output surface creation async (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698