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

Unified Diff: cc/trees/layer_tree_host.cc

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 side-by-side diff with in-line comments
Download patch
Index: cc/trees/layer_tree_host.cc
diff --git a/cc/trees/layer_tree_host.cc b/cc/trees/layer_tree_host.cc
index 6f995d8ca634a3548bb4b460896fd6dc2d806d69..6e07a0189624c0ecd376094621fb7da0d807d6d2 100644
--- a/cc/trees/layer_tree_host.cc
+++ b/cc/trees/layer_tree_host.cc
@@ -383,8 +383,12 @@ void LayerTreeHost::CommitComplete() {
client_->DidCommit();
}
-scoped_ptr<OutputSurface> LayerTreeHost::CreateOutputSurface() {
- return client_->CreateOutputSurface(num_failed_recreate_attempts_ >= 4);
+void LayerTreeHost::SetOutputSurface(scoped_ptr<OutputSurface> surface) {
+ proxy_->SetOutputSurface(surface.Pass());
+}
+
+void LayerTreeHost::RequestNewOutputSurface() {
+ client_->RequestNewOutputSurface(num_failed_recreate_attempts_ >= 4);
}
scoped_ptr<LayerTreeHostImpl> LayerTreeHost::CreateLayerTreeHostImpl(
@@ -678,9 +682,8 @@ void LayerTreeHost::Composite(base::TimeTicks frame_begin_time) {
SingleThreadProxy* proxy = static_cast<SingleThreadProxy*>(proxy_.get());
SetLayerTreeHostClientReady();
-
if (output_surface_lost_)
- proxy->CreateAndInitializeOutputSurface();
+ RequestNewOutputSurface();
if (output_surface_lost_)
no sievers 2014/06/23 19:53:58 nit: combine if-clauses
enne (OOO) 2014/06/24 22:20:06 Done.
return;

Powered by Google App Engine
This is Rietveld 408576698