Index: content/browser/browser_main_loop.cc |
=================================================================== |
--- content/browser/browser_main_loop.cc (revision 149863) |
+++ content/browser/browser_main_loop.cc (working copy) |
@@ -68,6 +68,8 @@ |
#if defined(OS_LINUX) |
#include "content/browser/device_monitor_linux.h" |
+#elif defined(OS_MACOSX) |
+#include "content/browser/device_monitor_mac.h" |
#endif |
#if defined(OS_CHROMEOS) |
@@ -619,6 +621,8 @@ |
#if defined(OS_LINUX) |
device_monitor_linux_.reset(new DeviceMonitorLinux()); |
+#elif defined(OS_MACOSX) |
+ device_monitor_mac_.reset(new DeviceMonitorMac()); |
#endif |
// RDH needs the IO thread to be created. |