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

Unified Diff: device/common/device_client.cc

Issue 507503002: Remove BrowserThread dependency from usb_service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Acquire the UsbService instance through a DeviceClient implementation. 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/common/device_client.cc
diff --git a/device/common/device_client.cc b/device/common/device_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a24c090cd9831f0c68f73605bf0eef74673b3bae
--- /dev/null
+++ b/device/common/device_client.cc
@@ -0,0 +1,32 @@
+// 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() { 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.
+ NOTIMPLEMENTED();
+ return NULL;
+}
+
+} // namespace device

Powered by Google App Engine
This is Rietveld 408576698