Index: cc/trees/single_thread_proxy.cc |
diff --git a/cc/trees/single_thread_proxy.cc b/cc/trees/single_thread_proxy.cc |
index 0e8c81c83d4e86c0ea2764ca1b535f77ae49f175..97b06bc4894f892b1c2ba80b5aadf3500052d9c9 100644 |
--- a/cc/trees/single_thread_proxy.cc |
+++ b/cc/trees/single_thread_proxy.cc |
@@ -107,15 +107,16 @@ void SingleThreadProxy::SetVisible(bool visible) { |
UpdateBackgroundAnimateTicking(); |
} |
-void SingleThreadProxy::CreateAndInitializeOutputSurface() { |
- TRACE_EVENT0( |
- "cc", "SingleThreadProxy::CreateAndInitializeOutputSurface"); |
+void SingleThreadProxy::RequestNewOutputSurface() { |
DCHECK(Proxy::IsMainThread()); |
DCHECK(layer_tree_host_->output_surface_lost()); |
+ layer_tree_host_->RequestNewOutputSurface(); |
+} |
- scoped_ptr<OutputSurface> output_surface = |
- layer_tree_host_->CreateOutputSurface(); |
- |
+void SingleThreadProxy::SetOutputSurface( |
+ scoped_ptr<OutputSurface> output_surface) { |
+ DCHECK(Proxy::IsMainThread()); |
+ DCHECK(layer_tree_host_->output_surface_lost()); |
renderer_capabilities_for_main_thread_ = RendererCapabilities(); |
bool success = !!output_surface; |
@@ -135,7 +136,7 @@ void SingleThreadProxy::CreateAndInitializeOutputSurface() { |
} else if (Proxy::MainThreadTaskRunner()) { |
MainThreadTaskRunner()->PostTask( |
FROM_HERE, |
- base::Bind(&SingleThreadProxy::CreateAndInitializeOutputSurface, |
+ base::Bind(&SingleThreadProxy::RequestNewOutputSurface, |
weak_factory_.GetWeakPtr())); |
} |
} |
@@ -664,10 +665,10 @@ void SingleThreadProxy::ScheduledActionBeginOutputSurfaceCreation() { |
if (Proxy::MainThreadTaskRunner()) { |
MainThreadTaskRunner()->PostTask( |
FROM_HERE, |
- base::Bind(&SingleThreadProxy::CreateAndInitializeOutputSurface, |
+ base::Bind(&SingleThreadProxy::RequestNewOutputSurface, |
weak_factory_.GetWeakPtr())); |
} else { |
- CreateAndInitializeOutputSurface(); |
+ RequestNewOutputSurface(); |
} |
} |