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

Unified Diff: content/browser/gpu/gpu_process_host.cc

Issue 10690168: Aura: Resize locks with --ui-enable-threaded-compositing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address jamesr@ comments. Created 8 years, 2 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: content/browser/gpu/gpu_process_host.cc
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc
index d03bb4a6ca3cfd573cc093c55cd227eeb46f6621..3f46f1c61112a3dc857cdf431833214ecf205f08 100644
--- a/content/browser/gpu/gpu_process_host.cc
+++ b/content/browser/gpu/gpu_process_host.cc
@@ -122,7 +122,7 @@ void AcceleratedSurfaceBuffersSwappedCompletedForGPU(int host_id,
GpuProcessHost* host = GpuProcessHost::FromID(host_id);
if (host) {
if (alive)
- host->Send(new AcceleratedSurfaceMsg_BufferPresented(route_id, 0));
+ host->Send(new AcceleratedSurfaceMsg_BufferPresented(route_id, false, 0));
else
host->ForceShutdown();
}

Powered by Google App Engine
This is Rietveld 408576698