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

Unified Diff: device/core/device_client.cc

Issue 2417043002: Move device/core files to device/base directory. (Closed)
Patch Set: Fix ChromeOS build Created 4 years, 2 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
« no previous file with comments | « device/core/device_client.h ('k') | device/core/device_core_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/core/device_client.cc
diff --git a/device/core/device_client.cc b/device/core/device_client.cc
deleted file mode 100644
index 50b015e9ddc636a6a0e525d6e6bc3548a3b537ce..0000000000000000000000000000000000000000
--- a/device/core/device_client.cc
+++ /dev/null
@@ -1,43 +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.
-
-#include "device/core/device_client.h"
-
-#include "base/logging.h"
-
-namespace device {
-
-namespace {
-
-DeviceClient* g_instance;
-
-} // namespace
-
-DeviceClient::DeviceClient() {
- g_instance = this;
-}
-
-DeviceClient::~DeviceClient() {
- g_instance = nullptr;
-}
-
-/* static */
-DeviceClient* DeviceClient::Get() {
- DCHECK(g_instance);
- return g_instance;
-}
-
-UsbService* DeviceClient::GetUsbService() {
- // This should never be called by clients which do not support the USB API.
- NOTREACHED();
- return nullptr;
-}
-
-HidService* DeviceClient::GetHidService() {
- // This should never be called by clients which do not support the HID API.
- NOTREACHED();
- return nullptr;
-}
-
-} // namespace device
« no previous file with comments | « device/core/device_client.h ('k') | device/core/device_core_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698