| Index: device/core/device_client.cc
|
| diff --git a/device/core/device_client.cc b/device/core/device_client.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ad96b1ef24c4fe5bbdb0b1b7a12aaec8e1dec1d9
|
| --- /dev/null
|
| +++ b/device/core/device_client.cc
|
| @@ -0,0 +1,38 @@
|
| +// 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.
|
| +
|
| +#include "device/core/device_client.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace device {
|
| +
|
| +namespace {
|
| +
|
| +DeviceClient* g_instance = NULL;
|
| +
|
| +} // namespace
|
| +
|
| +DeviceClient::DeviceClient() {
|
| + DCHECK(!g_instance);
|
| + g_instance = this;
|
| +}
|
| +
|
| +DeviceClient::~DeviceClient() {
|
| + g_instance = NULL;
|
| +}
|
| +
|
| +/* static */
|
| +DeviceClient* DeviceClient::Get() {
|
| + DCHECK(g_instance);
|
| + return g_instance;
|
| +}
|
| +
|
| +usb_service::UsbService* DeviceClient::GetUsbService() {
|
| + // This should never be called by clients which do not support the USB API.
|
| + NOTREACHED();
|
| + return NULL;
|
| +}
|
| +
|
| +} // namespace device
|
|
|