Index: device/common/device_client.h |
diff --git a/device/common/device_client.h b/device/common/device_client.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..09da68214ceccb6e4418624f9f3107d7afc2ac40 |
--- /dev/null |
+++ b/device/common/device_client.h |
@@ -0,0 +1,34 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef DEVICE_COMMON_DEVICE_CLIENT_H_ |
+#define DEVICE_COMMON_DEVICE_CLIENT_H_ |
+ |
+namespace usb_service { |
+class UsbService; |
+} |
+ |
+namespace device { |
+ |
+// 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. |
+class DeviceClient { |
+ public: |
+ // Construction sets the singlse instance. |
Lei Zhang
2014/08/28 18:44:57
typo?
|
+ DeviceClient(); |
+ |
+ // Destruction clears the single instance. |
+ ~DeviceClient(); |
+ |
+ // Returns the single instance of |this|. |
+ static DeviceClient* Get(); |
+ |
+ // Returns the UsbService instance for this embedder. |
+ virtual usb_service::UsbService* GetUsbService(); |
+}; |
+ |
+} // namespace device |
+ |
+#endif // DEVICE_COMMON_DEVICE_CLIENT_H_ |