summaryrefslogtreecommitdiffstats
path: root/device/core/device_client.cc
blob: 52021221d9f0fc84130109ba6846a7d3eafd0627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// 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;
}

UsbService* DeviceClient::GetUsbService() {
  // This should never be called by clients which do not support the USB API.
  NOTREACHED();
  return NULL;
}

HidService* DeviceClient::GetHidService() {
  // This should never be called by clients which do not support the HID API.
  NOTREACHED();
  return NULL;
}

}  // namespace device