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); |