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

Unified Diff: components/usb_service/usb_device_impl.h

Issue 278633003: Extracted UsbDeviceHandle as interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/usb_service/usb_device_impl.h
diff --git a/components/usb_service/usb_device_impl.h b/components/usb_service/usb_device_impl.h
index 5a7cc24331d14d762d6f4f9e5751f9019d6c455b..db84f5e76f69e7edb6f4163c19facca7bbcf79ff 100644
--- a/components/usb_service/usb_device_impl.h
+++ b/components/usb_service/usb_device_impl.h
@@ -17,7 +17,7 @@ struct libusb_config_descriptor;
namespace usb_service {
-class UsbDeviceHandle;
+class UsbDeviceHandleImpl;
class UsbContext;
typedef libusb_device* PlatformUsbDevice;
@@ -58,7 +58,7 @@ class UsbDeviceImpl : public UsbDevice {
scoped_refptr<UsbContext> context_;
// Opened handles.
- typedef std::vector<scoped_refptr<UsbDeviceHandle> > HandlesVector;
+ typedef std::vector<scoped_refptr<UsbDeviceHandleImpl> > HandlesVector;
HandlesVector handles_;
DISALLOW_COPY_AND_ASSIGN(UsbDeviceImpl);
« 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