From 10ef8fe6117534aff17dcce8829bf5a542407003 Mon Sep 17 00:00:00 2001 From: "jiayl@webrtc.org" Date: Wed, 9 Jul 2014 19:41:32 +0000 Subject: [PATCH] Create FullScreenChromeWindowDetector in DesktopConfigurationOptions::CreateDefault. BUG=crbug/385294 R=sergeyu@chromium.org Review URL: https://webrtc-codereview.appspot.com/18759004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6640 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/desktop_capture/desktop_capture_options.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webrtc/modules/desktop_capture/desktop_capture_options.cc b/webrtc/modules/desktop_capture/desktop_capture_options.cc index 105853bf94..b7f123b9d1 100644 --- a/webrtc/modules/desktop_capture/desktop_capture_options.cc +++ b/webrtc/modules/desktop_capture/desktop_capture_options.cc @@ -35,6 +35,8 @@ DesktopCaptureOptions DesktopCaptureOptions::CreateDefault() { #endif #if defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) result.set_configuration_monitor(new DesktopConfigurationMonitor()); + result.set_full_screen_chrome_window_detector( + new FullScreenChromeWindowDetector()); #endif return result; }