diff options
Diffstat (limited to 'chrome/browser/renderer_host')
-rw-r--r-- | chrome/browser/renderer_host/render_widget_host_view_mac.mm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/chrome/browser/renderer_host/render_widget_host_view_mac.mm b/chrome/browser/renderer_host/render_widget_host_view_mac.mm index 60cc85e..6317917 100644 --- a/chrome/browser/renderer_host/render_widget_host_view_mac.mm +++ b/chrome/browser/renderer_host/render_widget_host_view_mac.mm @@ -1083,6 +1083,17 @@ void RenderWidgetHostViewMac::AcknowledgeSwapBuffers( int renderer_id, int32 route_id, uint64 swap_buffers_count) { + // Called on the display link. Hand actual work off to the UI thread, which + // will then redispatch the message to the IPC thread. + // Currently, this is never called for plugins. + if (render_widget_host_) { + DCHECK_EQ(render_widget_host_->process()->id(), renderer_id); + // |render_widget_host_->routing_id()| and |route_id| are usually not + // equal: The former identifies the channel from the RWH in the browser + // process to the corresponding render widget in the renderer process, while + // the latter identifies the channel from the GpuCommandBufferStub in the + // GPU process to the corresponding command buffer client in the renderer. + } BrowserThread::PostTask( BrowserThread::IO, FROM_HERE, new BuffersSwappedAcknowledger( |