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

Side by Side Diff: device/usb/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
« no previous file with comments | « device/usb/usb_device_handle_impl.cc ('k') | device/usb/usb_device_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 COMPONENTS_USB_SERVICE_USB_DEVICE_IMPL_H_ 5 #ifndef DEVICE_USB_USB_DEVICE_IMPL_H_
6 #define COMPONENTS_USB_SERVICE_USB_DEVICE_IMPL_H_ 6 #define DEVICE_USB_USB_DEVICE_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/threading/thread_checker.h" 12 #include "base/threading/thread_checker.h"
13 #include "components/usb_service/usb_device.h" 13 #include "device/usb/usb_device.h"
14 14
15 struct libusb_device; 15 struct libusb_device;
16 struct libusb_config_descriptor; 16 struct libusb_config_descriptor;
17 17
18 namespace base { 18 namespace base {
19 class SingleThreadTaskRunner; 19 class SingleThreadTaskRunner;
20 } 20 }
21 21
22 namespace usb_service { 22 namespace device {
23 23
24 class UsbDeviceHandleImpl; 24 class UsbDeviceHandleImpl;
25 class UsbContext; 25 class UsbContext;
26 26
27 typedef libusb_device* PlatformUsbDevice; 27 typedef libusb_device* PlatformUsbDevice;
28 typedef libusb_config_descriptor* PlatformUsbConfigDescriptor; 28 typedef libusb_config_descriptor* PlatformUsbConfigDescriptor;
29 29
30 class UsbDeviceImpl : public UsbDevice { 30 class UsbDeviceImpl : public UsbDevice {
31 public: 31 public:
32 // UsbDevice implementation: 32 // UsbDevice implementation:
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 // Opened handles. 65 // Opened handles.
66 typedef std::vector<scoped_refptr<UsbDeviceHandleImpl> > HandlesVector; 66 typedef std::vector<scoped_refptr<UsbDeviceHandleImpl> > HandlesVector;
67 HandlesVector handles_; 67 HandlesVector handles_;
68 68
69 // Reference to the UI thread for permission-broker calls. 69 // Reference to the UI thread for permission-broker calls.
70 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; 70 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_;
71 71
72 DISALLOW_COPY_AND_ASSIGN(UsbDeviceImpl); 72 DISALLOW_COPY_AND_ASSIGN(UsbDeviceImpl);
73 }; 73 };
74 74
75 } // namespace usb_service 75 } // namespace device
76 76
77 #endif // COMPONENTS_USB_SERVICE_USB_DEVICE_IMPL_H_ 77 #endif // DEVICE_USB_USB_DEVICE_IMPL_H_
OLDNEW
« no previous file with comments | « device/usb/usb_device_handle_impl.cc ('k') | device/usb/usb_device_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698