diff options
Diffstat (limited to 'content/browser/renderer_host/media/desktop_capture_device_aura.cc')
-rw-r--r-- | content/browser/renderer_host/media/desktop_capture_device_aura.cc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/content/browser/renderer_host/media/desktop_capture_device_aura.cc b/content/browser/renderer_host/media/desktop_capture_device_aura.cc index 03e9c89..f16d564 100644 --- a/content/browser/renderer_host/media/desktop_capture_device_aura.cc +++ b/content/browser/renderer_host/media/desktop_capture_device_aura.cc @@ -343,9 +343,15 @@ void DesktopVideoCaptureMachine::DidCopyOutput( gfx::Point cursor_position_in_frame = UpdateCursorState(region_in_frame); yuv_readback_pipeline_->ReadbackYUV( - texture_mailbox.name(), texture_mailbox.sync_point(), video_frame.get(), - base::Bind(&CopyOutputFinishedForVideo, start_time, capture_frame_cb, - video_frame, scaled_cursor_bitmap_, cursor_position_in_frame, + texture_mailbox.mailbox(), + texture_mailbox.sync_point(), + video_frame.get(), + base::Bind(&CopyOutputFinishedForVideo, + start_time, + capture_frame_cb, + video_frame, + scaled_cursor_bitmap_, + cursor_position_in_frame, base::Passed(&release_callback))); } |