| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_USB_SERVICE_USB_DEVICE_IMPL_H_ | |
| 6 #define COMPONENTS_USB_SERVICE_USB_DEVICE_IMPL_H_ | |
| 7 | |
| 8 #include <vector> | |
| 9 | |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/callback.h" | |
| 12 #include "base/threading/thread_checker.h" | |
| 13 #include "components/usb_service/usb_device.h" | |
| 14 | |
| 15 struct libusb_device; | |
| 16 struct libusb_config_descriptor; | |
| 17 | |
| 18 namespace base { | |
| 19 class SingleThreadTaskRunner; | |
| 20 } | |
| 21 | |
| 22 namespace usb_service { | |
| 23 | |
| 24 class UsbDeviceHandleImpl; | |
| 25 class UsbContext; | |
| 26 | |
| 27 typedef libusb_device* PlatformUsbDevice; | |
| 28 typedef libusb_config_descriptor* PlatformUsbConfigDescriptor; | |
| 29 | |
| 30 class UsbDeviceImpl : public UsbDevice { | |
| 31 public: | |
| 32 // UsbDevice implementation: | |
| 33 #if defined(OS_CHROMEOS) | |
| 34 virtual void RequestUsbAccess( | |
| 35 int interface_id, | |
| 36 const base::Callback<void(bool success)>& callback) OVERRIDE; | |
| 37 #endif // OS_CHROMEOS | |
| 38 virtual scoped_refptr<UsbDeviceHandle> Open() OVERRIDE; | |
| 39 virtual bool Close(scoped_refptr<UsbDeviceHandle> handle) OVERRIDE; | |
| 40 virtual scoped_refptr<UsbConfigDescriptor> ListInterfaces() OVERRIDE; | |
| 41 | |
| 42 protected: | |
| 43 friend class UsbServiceImpl; | |
| 44 | |
| 45 // Called by UsbServiceImpl only; | |
| 46 UsbDeviceImpl(scoped_refptr<UsbContext> context, | |
| 47 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, | |
| 48 PlatformUsbDevice platform_device, | |
| 49 uint16 vendor_id, | |
| 50 uint16 product_id, | |
| 51 uint32 unique_id); | |
| 52 | |
| 53 virtual ~UsbDeviceImpl(); | |
| 54 | |
| 55 // Called only be UsbService. | |
| 56 void OnDisconnect(); | |
| 57 | |
| 58 private: | |
| 59 base::ThreadChecker thread_checker_; | |
| 60 PlatformUsbDevice platform_device_; | |
| 61 | |
| 62 // Retain the context so that it will not be released before UsbDevice. | |
| 63 scoped_refptr<UsbContext> context_; | |
| 64 | |
| 65 // Opened handles. | |
| 66 typedef std::vector<scoped_refptr<UsbDeviceHandleImpl> > HandlesVector; | |
| 67 HandlesVector handles_; | |
| 68 | |
| 69 // Reference to the UI thread for permission-broker calls. | |
| 70 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; | |
| 71 | |
| 72 DISALLOW_COPY_AND_ASSIGN(UsbDeviceImpl); | |
| 73 }; | |
| 74 | |
| 75 } // namespace usb_service | |
| 76 | |
| 77 #endif // COMPONENTS_USB_SERVICE_USB_DEVICE_IMPL_H_ | |
| OLD | NEW |