From 9ab17d347850417047165851d4e0a67d44aca30d Mon Sep 17 00:00:00 2001 From: zijiehe Date: Mon, 3 Apr 2017 11:51:18 -0700 Subject: [PATCH] Forward capturer_id to shared desktopframe capturer_id() field has not been forward to the shared DesktopFrame. BUG=650926, 679523 Review-Url: https://codereview.webrtc.org/2796583002 Cr-Commit-Position: refs/heads/master@{#17516} --- webrtc/modules/desktop_capture/shared_desktop_frame.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/webrtc/modules/desktop_capture/shared_desktop_frame.cc b/webrtc/modules/desktop_capture/shared_desktop_frame.cc index fd67c74229..d825140828 100644 --- a/webrtc/modules/desktop_capture/shared_desktop_frame.cc +++ b/webrtc/modules/desktop_capture/shared_desktop_frame.cc @@ -37,6 +37,7 @@ std::unique_ptr SharedDesktopFrame::Share() { std::unique_ptr result(new SharedDesktopFrame(core_)); result->set_dpi(dpi()); result->set_capture_time_ms(capture_time_ms()); + result->set_capturer_id(capturer_id()); *result->mutable_updated_region() = updated_region(); return result; }