| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef DEVICE_GENERIC_SENSOR_LINUX_SENSOR_DEVICE_MANAGER_H_ | 5 #ifndef DEVICE_GENERIC_SENSOR_LINUX_SENSOR_DEVICE_MANAGER_H_ |
| 6 #define DEVICE_GENERIC_SENSOR_LINUX_SENSOR_DEVICE_MANAGER_H_ | 6 #define DEVICE_GENERIC_SENSOR_LINUX_SENSOR_DEVICE_MANAGER_H_ |
| 7 | 7 |
| 8 #include "base/scoped_observer.h" | 8 #include "base/scoped_observer.h" |
| 9 | 9 |
| 10 #include "base/single_thread_task_runner.h" |
| 10 #include "device/base/device_monitor_linux.h" | 11 #include "device/base/device_monitor_linux.h" |
| 11 #include "device/generic_sensor/generic_sensor_export.h" | 12 #include "device/generic_sensor/generic_sensor_export.h" |
| 12 #include "device/generic_sensor/public/interfaces/sensor.mojom.h" | 13 #include "device/generic_sensor/public/interfaces/sensor.mojom.h" |
| 13 | 14 |
| 14 namespace device { | 15 namespace device { |
| 15 | 16 |
| 16 struct SensorInfoLinux; | 17 struct SensorInfoLinux; |
| 17 | 18 |
| 18 // This SensorDeviceManager uses LinuxDeviceMonitor to enumerate devices | 19 // This SensorDeviceManager uses LinuxDeviceMonitor to enumerate devices |
| 19 // and listen to "add/removed" events to notify |provider_| about | 20 // and listen to "add/removed" events to notify |provider_| about |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 77 |
| 77 // A task runner, which |delegate_| lives on. | 78 // A task runner, which |delegate_| lives on. |
| 78 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; | 79 scoped_refptr<base::SingleThreadTaskRunner> task_runner_; |
| 79 | 80 |
| 80 DISALLOW_COPY_AND_ASSIGN(SensorDeviceManager); | 81 DISALLOW_COPY_AND_ASSIGN(SensorDeviceManager); |
| 81 }; | 82 }; |
| 82 | 83 |
| 83 } // namespace device | 84 } // namespace device |
| 84 | 85 |
| 85 #endif // DEVICE_GENERIC_SENSOR_LINUX_SENSOR_DEVICE_MANAGER_H_ | 86 #endif // DEVICE_GENERIC_SENSOR_LINUX_SENSOR_DEVICE_MANAGER_H_ |
| OLD | NEW |