| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index af21209e88cb3c6c95ad9991d8a4dc129a037eca..430e76fdaa147b5254503a69adfe6a8b5aa2e707 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -53,6 +53,10 @@
|
| #include "net/base/winsock_init.h"
|
| #endif
|
|
|
| +#if defined(OS_MACOSX)
|
| +#include "content/browser/mac/media_device_notifications.h"
|
| +#endif
|
| +
|
| #if defined(OS_LINUX) || defined(OS_OPENBSD)
|
| #include <glib-object.h>
|
| #endif
|
| @@ -327,6 +331,8 @@ void BrowserMainLoop::MainMessageLoopStart() {
|
|
|
| #if defined(OS_WIN)
|
| system_message_window_.reset(new SystemMessageWindowWin);
|
| +#elif defined(OS_MACOSX)
|
| + StartMediaDeviceNotifications();
|
| #endif
|
|
|
| // Prior to any processing happening on the io thread, we create the
|
|
|