Index: device/common/device_client.cc |
diff --git a/device/common/device_client.cc b/device/common/device_client.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2e6ff5dcda414da0356648c299a4081600daa807 |
--- /dev/null |
+++ b/device/common/device_client.cc |
@@ -0,0 +1,35 @@ |
+// 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/common/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; } |
Ken Rockot(use gerrit already)
2014/08/28 21:47:03
I think it's preferable to use newlines when there
Reilly Grant (use Gerrit)
2014/08/28 22:16:13
Done.
|
+ |
+/* static */ DeviceClient* DeviceClient::Get() { |
Ken Rockot(use gerrit already)
2014/08/28 21:47:03
// static
Reilly Grant (use Gerrit)
2014/08/28 22:16:13
Done.
|
+ 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 |