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

Side by Side Diff: chrome/browser/chrome_device_client.h

Issue 507503002: Remove BrowserThread dependency from usb_service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comments describing the new DeviceClient classes. Created 6 years, 3 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698