| Index: device/core/device_client.h
|
| diff --git a/device/core/device_client.h b/device/core/device_client.h
|
| deleted file mode 100644
|
| index 9fdc7f1ee3c3d58ab471bea02bc6c52aa2996657..0000000000000000000000000000000000000000
|
| --- a/device/core/device_client.h
|
| +++ /dev/null
|
| @@ -1,42 +0,0 @@
|
| -// 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_CORE_DEVICE_CLIENT_H_
|
| -#define DEVICE_CORE_DEVICE_CLIENT_H_
|
| -
|
| -#include "base/macros.h"
|
| -#include "device/core/device_core_export.h"
|
| -
|
| -namespace device {
|
| -
|
| -class HidService;
|
| -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.
|
| -class DEVICE_CORE_EXPORT DeviceClient {
|
| - public:
|
| - // Construction sets the single instance.
|
| - DeviceClient();
|
| -
|
| - // Destruction clears the single instance.
|
| - virtual ~DeviceClient();
|
| -
|
| - // Returns the single instance of |this|.
|
| - static DeviceClient* Get();
|
| -
|
| - // Returns the UsbService instance for this embedder.
|
| - virtual UsbService* GetUsbService();
|
| -
|
| - // Returns the HidService instance for this embedder.
|
| - virtual HidService* GetHidService();
|
| -
|
| - private:
|
| - DISALLOW_COPY_AND_ASSIGN(DeviceClient);
|
| -};
|
| -
|
| -} // namespace device
|
| -
|
| -#endif // DEVICE_CORE_DEVICE_CLIENT_H_
|
|
|