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

Unified Diff: cc/trees/single_thread_proxy.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/single_thread_proxy.cc
diff --git a/cc/trees/single_thread_proxy.cc b/cc/trees/single_thread_proxy.cc
index 5e79851a8f0e18a94f888c82fa124197dcdc5be6..90afb141a212cd8fc1c9ebfef4df0c2c9535e9d0 100644
--- a/cc/trees/single_thread_proxy.cc
+++ b/cc/trees/single_thread_proxy.cc
@@ -101,15 +101,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;
@@ -129,7 +130,7 @@ void SingleThreadProxy::CreateAndInitializeOutputSurface() {
} else if (Proxy::MainThreadTaskRunner()) {
Proxy::MainThreadTaskRunner()->PostTask(
FROM_HERE,
- base::Bind(&SingleThreadProxy::CreateAndInitializeOutputSurface,
+ base::Bind(&SingleThreadProxy::RequestNewOutputSurface,
weak_factory_.GetWeakPtr()));
}
}
@@ -624,10 +625,10 @@ void SingleThreadProxy::ScheduledActionBeginOutputSurfaceCreation() {
if (Proxy::MainThreadTaskRunner()) {
Proxy::MainThreadTaskRunner()->PostTask(
FROM_HERE,
- base::Bind(&SingleThreadProxy::CreateAndInitializeOutputSurface,
+ base::Bind(&SingleThreadProxy::RequestNewOutputSurface,
weak_factory_.GetWeakPtr()));
} else {
- CreateAndInitializeOutputSurface();
+ RequestNewOutputSurface();
}
}

Powered by Google App Engine
This is Rietveld 408576698