OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // libudev is used for monitoring device changes. | 5 // libudev is used for monitoring device changes. |
6 | 6 |
7 #include "content/browser/device_monitor_linux.h" | 7 #include "content/browser/device_monitor_udev.h" |
8 | 8 |
9 #include <libudev.h> | 9 #include <libudev.h> |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/system_monitor/system_monitor.h" | 13 #include "base/system_monitor/system_monitor.h" |
14 #include "content/browser/udev_linux.h" | 14 #include "content/browser/udev_linux.h" |
15 #include "content/public/browser/browser_thread.h" | 15 #include "content/public/browser/browser_thread.h" |
16 | 16 |
17 namespace { | 17 namespace { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 device_type = kSubsystemMap[i].device_type; | 78 device_type = kSubsystemMap[i].device_type; |
79 break; | 79 break; |
80 } | 80 } |
81 } | 81 } |
82 DCHECK_NE(device_type, base::SystemMonitor::DEVTYPE_UNKNOWN); | 82 DCHECK_NE(device_type, base::SystemMonitor::DEVTYPE_UNKNOWN); |
83 | 83 |
84 base::SystemMonitor::Get()->ProcessDevicesChanged(device_type); | 84 base::SystemMonitor::Get()->ProcessDevicesChanged(device_type); |
85 } | 85 } |
86 | 86 |
87 } // namespace content | 87 } // namespace content |
OLD | NEW |