Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(798)

Side by Side Diff: components/usb_service/usb_device_impl.h

Issue 497363004: Merge components/usb_service into device/usb. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW
« no previous file with comments | « components/usb_service/usb_device_handle_impl.cc ('k') | components/usb_service/usb_device_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698