Index: content/browser/browser_main_loop.cc |
=================================================================== |
--- content/browser/browser_main_loop.cc (revision 148913) |
+++ content/browser/browser_main_loop.cc (working copy) |
@@ -66,6 +66,10 @@ |
#include <glib-object.h> |
#endif |
+#if defined(OS_LINUX) |
+#include "content/browser/device_monitor_linux.h" |
+#endif |
+ |
#if defined(OS_CHROMEOS) |
#include <dbus/dbus-glib.h> |
#endif |
@@ -615,6 +619,10 @@ |
ImageTransportFactory::Initialize(); |
#endif |
+#if defined(OS_LINUX) |
+ device_monitor_linux_.reset(new DeviceMonitorLinux()); |
+#endif |
+ |
// RDH needs the IO thread to be created. |
resource_dispatcher_host_.reset(new ResourceDispatcherHostImpl()); |