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

Unified Diff: content/browser/renderer_host/render_widget_host_view_gtk.cc

Issue 11475017: Revert 171569 as it broke some browser_tests on win_aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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/renderer_host/render_widget_host_view_gtk.cc
===================================================================
--- content/browser/renderer_host/render_widget_host_view_gtk.cc (revision 171661)
+++ content/browser/renderer_host/render_widget_host_view_gtk.cc (working copy)
@@ -1057,14 +1057,14 @@
const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params,
int gpu_host_id) {
RenderWidgetHostImpl::AcknowledgeBufferPresent(
- params.route_id, gpu_host_id, params.surface_handle, 0);
+ params.route_id, gpu_host_id, true, 0);
}
void RenderWidgetHostViewGtk::AcceleratedSurfacePostSubBuffer(
const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params,
int gpu_host_id) {
RenderWidgetHostImpl::AcknowledgeBufferPresent(
- params.route_id, gpu_host_id, params.surface_handle, 0);
+ params.route_id, gpu_host_id, true, 0);
}
void RenderWidgetHostViewGtk::AcceleratedSurfaceSuspend() {

Powered by Google App Engine
This is Rietveld 408576698