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

Unified Diff: mojo/examples/compositor_app/compositor_host.cc

Issue 348093004: Make cc output surface creation async (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android compile fixes Created 6 years, 3 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: mojo/examples/compositor_app/compositor_host.cc
diff --git a/mojo/examples/compositor_app/compositor_host.cc b/mojo/examples/compositor_app/compositor_host.cc
index 90d04bbd6dddb74495eaa5ee5946ca29d9c75b37..13e544c96396636e38cc604d407926fc4d128dc6 100644
--- a/mojo/examples/compositor_app/compositor_host.cc
+++ b/mojo/examples/compositor_app/compositor_host.cc
@@ -76,11 +76,9 @@ void CompositorHost::ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
float page_scale,
float top_controls_delta) {}
-scoped_ptr<cc::OutputSurface> CompositorHost::CreateOutputSurface(
- bool fallback) {
- return make_scoped_ptr(
- new cc::OutputSurface(
- new ContextProviderMojo(command_buffer_handle_.Pass())));
+void CompositorHost::RequestNewOutputSurface(bool fallback) {
+ tree_->SetOutputSurface(make_scoped_ptr(new cc::OutputSurface(
+ new ContextProviderMojo(command_buffer_handle_.Pass()))));
}
void CompositorHost::DidInitializeOutputSurface() {

Powered by Google App Engine
This is Rietveld 408576698