Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4951)

Unified Diff: chrome/browser/media/media_capture_devices_dispatcher.cc

Issue 530983002: Mac Video Capture: Connect AVFoundation for Dev Channel builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/media_capture_devices_dispatcher.cc
diff --git a/chrome/browser/media/media_capture_devices_dispatcher.cc b/chrome/browser/media/media_capture_devices_dispatcher.cc
index f1e34a2119061db6d33638ad68c86157e5875b8b..f007433289ab625e5aaae3384ff788778490cdc0 100644
--- a/chrome/browser/media/media_capture_devices_dispatcher.cc
+++ b/chrome/browser/media/media_capture_devices_dispatcher.cc
@@ -301,11 +301,13 @@ MediaCaptureDevicesDispatcher::MediaCaptureDevicesDispatcher()
content::NotificationService::AllSources());
// AVFoundation is used for video/audio device monitoring and video capture in
- // Mac. Experimentally, connect it in Canary and Unknown (developer builds).
+ // Mac. Experimentally, connect it in Dev, Canary and Unknown (developer
+ // builds).
#if defined(OS_MACOSX)
chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kForceQTKit)) {
- if (channel == chrome::VersionInfo::CHANNEL_CANARY ||
+ if (channel == chrome::VersionInfo::CHANNEL_DEV ||
+ channel == chrome::VersionInfo::CHANNEL_CANARY ||
channel == chrome::VersionInfo::CHANNEL_UNKNOWN) {
CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kEnableAVFoundation);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698