| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 UI_EVENTS_OZONE_DEVICE_UDEV_DEVICE_MANAGER_UDEV_H_ | 5 #ifndef UI_EVENTS_OZONE_DEVICE_UDEV_DEVICE_MANAGER_UDEV_H_ |
| 6 #define UI_EVENTS_OZONE_DEVICE_UDEV_DEVICE_MANAGER_UDEV_H_ | 6 #define UI_EVENTS_OZONE_DEVICE_UDEV_DEVICE_MANAGER_UDEV_H_ |
| 7 | 7 |
| 8 #include "base/message_loop/message_pump_libevent.h" | 8 #include "base/message_loop/message_pump_libevent.h" |
| 9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
| 10 #include "device/udev_linux/scoped_udev.h" | 10 #include "device/udev_linux/scoped_udev.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 // base::MessagePumpLibevent::Watcher overrides: | 35 // base::MessagePumpLibevent::Watcher overrides: |
| 36 void OnFileCanReadWithoutBlocking(int fd) override; | 36 void OnFileCanReadWithoutBlocking(int fd) override; |
| 37 void OnFileCanWriteWithoutBlocking(int fd) override; | 37 void OnFileCanWriteWithoutBlocking(int fd) override; |
| 38 | 38 |
| 39 device::ScopedUdevPtr udev_; | 39 device::ScopedUdevPtr udev_; |
| 40 device::ScopedUdevMonitorPtr monitor_; | 40 device::ScopedUdevMonitorPtr monitor_; |
| 41 | 41 |
| 42 base::MessagePumpLibevent::FileDescriptorWatcher controller_; | 42 base::MessagePumpLibevent::FileDescriptorWatcher controller_; |
| 43 | 43 |
| 44 ObserverList<DeviceEventObserver> observers_; | 44 base::ObserverList<DeviceEventObserver> observers_; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(DeviceManagerUdev); | 46 DISALLOW_COPY_AND_ASSIGN(DeviceManagerUdev); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace ui | 49 } // namespace ui |
| 50 | 50 |
| 51 #endif // UI_EVENTS_OZONE_DEVICE_UDEV_DEVICE_MANAGER_UDEV_H_ | 51 #endif // UI_EVENTS_OZONE_DEVICE_UDEV_DEVICE_MANAGER_UDEV_H_ |
| OLD | NEW |