blob: 91a846ab1b4975a0a98dc1fd1227e137e2adc0d2 (
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
|
// Copyright 2015 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/usb/mock_usb_service.h"
#include "device/usb/usb_device.h"
namespace device {
MockUsbService::MockUsbService() {
}
MockUsbService::~MockUsbService() {
}
void MockUsbService::AddDevice(scoped_refptr<UsbDevice> device) {
devices_[device->unique_id()] = device;
NotifyDeviceAdded(device);
}
void MockUsbService::RemoveDevice(scoped_refptr<UsbDevice> device) {
devices_.erase(device->unique_id());
UsbService::NotifyDeviceRemoved(device);
}
scoped_refptr<UsbDevice> MockUsbService::GetDeviceById(uint32 unique_id) {
auto it = devices_.find(unique_id);
EXPECT_TRUE(it != devices_.end());
return it->second;
}
void MockUsbService::GetDevices(const GetDevicesCallback& callback) {
std::vector<scoped_refptr<UsbDevice>> devices;
for (const auto& map_entry : devices_) {
devices.push_back(map_entry.second);
}
callback.Run(devices);
}
} // namespace device
|