summaryrefslogtreecommitdiffstats
path: root/device/core
diff options
context:
space:
mode:
Diffstat (limited to 'device/core')
-rw-r--r--device/core/device_client.cc4
-rw-r--r--device/core/device_client.h5
2 files changed, 0 insertions, 9 deletions
diff --git a/device/core/device_client.cc b/device/core/device_client.cc
index 2aca216..5202122 100644
--- a/device/core/device_client.cc
+++ b/device/core/device_client.cc
@@ -35,10 +35,6 @@ UsbService* DeviceClient::GetUsbService() {
return NULL;
}
-void DeviceClient::ConnectToUSBDeviceManager(
- mojo::InterfaceRequest<usb::DeviceManager> request) {
-}
-
HidService* DeviceClient::GetHidService() {
// This should never be called by clients which do not support the HID API.
NOTREACHED();
diff --git a/device/core/device_client.h b/device/core/device_client.h
index 00fa179..300f4d6 100644
--- a/device/core/device_client.h
+++ b/device/core/device_client.h
@@ -34,11 +34,6 @@ class DeviceClient {
// Returns the UsbService instance for this embedder.
virtual UsbService* GetUsbService();
- // Connects a USB DeviceManager client to a concrete implementation. If
- // no such implementation is available the request is dropped.
- virtual void ConnectToUSBDeviceManager(
- mojo::InterfaceRequest<usb::DeviceManager> request);
-
// Returns the HidService instance for this embedder.
virtual HidService* GetHidService();