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

Unified Diff: device/core/device_client.h

Issue 497363004: Merge components/usb_service into device/usb. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide //device/usb on mobile platforms. Created 6 years, 4 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
Index: device/core/device_client.h
diff --git a/device/core/device_client.h b/device/core/device_client.h
index d8d938b26842ea91ae92eae931a1906a74519db3..3ca3130c0ad455412a170cfa598230f3039397d5 100644
--- a/device/core/device_client.h
+++ b/device/core/device_client.h
@@ -7,12 +7,10 @@
#include "base/macros.h"
-namespace usb_service {
-class UsbService;
-}
-
namespace device {
+class UsbService;
+
// Interface used by consumers of //device APIs to get pointers to the service
// singletons appropriate for a given embedding application. For an example see
// //chrome/browser/chrome_device_client.h.
@@ -28,7 +26,7 @@ class DeviceClient {
static DeviceClient* Get();
// Returns the UsbService instance for this embedder.
- virtual usb_service::UsbService* GetUsbService();
+ virtual UsbService* GetUsbService();
private:
DISALLOW_COPY_AND_ASSIGN(DeviceClient);

Powered by Google App Engine
This is Rietveld 408576698