OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_CHROME_DEVICE_CLIENT_H_ | |
6 #define CHROME_BROWSER_CHROME_DEVICE_CLIENT_H_ | |
7 | |
8 #include "device/common/device_client.h" | |
9 | |
10 #include "base/compiler_specific.h" | |
11 | |
12 // Implementation of device::DeviceClient that returns //device API service | |
13 // singletons appropriate for use within the Chrome application. | |
14 class ChromeDeviceClient : device::DeviceClient { | |
15 public: | |
16 ChromeDeviceClient(); | |
17 virtual ~ChromeDeviceClient(); | |
18 | |
19 virtual usb_service::UsbService* GetUsbService() OVERRIDE; | |
Lei Zhang
2014/08/28 18:44:57
nit: Add a comment to say // device::DEviceClient
| |
20 }; | |
Lei Zhang
2014/08/28 18:44:57
nit: DISALLOW_COPY_AND_ASSIGN
| |
21 | |
22 #endif // CHROME_BROWSER_CHROME_DEVICE_CLIENT_H_ | |
OLD | NEW |