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

Side by Side Diff: device/test/test_device_client.h

Issue 1314273002: Manage UsbService lifetime in DeviceClient implementations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « device/hid/hid_connection_unittest.cc ('k') | device/test/test_device_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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 #include "base/memory/ref_counted.h"
6 #include "base/memory/scoped_ptr.h"
7 #include "device/core/device_client.h"
8
9 namespace base {
10 class SingleThreadTaskRunner;
11 }
12
13 namespace device {
14
15 class HidService;
16 class UsbService;
17
18 class TestDeviceClient : public DeviceClient {
19 public:
20 TestDeviceClient(scoped_refptr<base::SingleThreadTaskRunner> task_runner);
21 ~TestDeviceClient() override;
22
23 private:
24 HidService* GetHidService() override;
25 UsbService* GetUsbService() override;
26
27 scoped_ptr<UsbService> usb_service_;
28 scoped_refptr<base::SingleThreadTaskRunner> blocking_task_runner_;
29 };
30
31 } // namespace device
OLDNEW
« no previous file with comments | « device/hid/hid_connection_unittest.cc ('k') | device/test/test_device_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698