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
This commit is contained in:
jiayl@webrtc.org 2014-07-09 19:41:32 +00:00
parent 4b1f330b4f
commit 10ef8fe611

View File

@ -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;
}