Add a silent audio sink to consume WebAudio data on silence detection.
[chromium-blink-merge.git] / device / usb / mock_usb_service.h
blobe0fbe53df85fa1740b10d447a4150add853adcf2
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.
5 #ifndef DEVICE_USB_MOCK_USB_SERVICE_H_
6 #define DEVICE_USB_MOCK_USB_SERVICE_H_
8 #include "device/usb/usb_service.h"
10 #include "testing/gmock/include/gmock/gmock.h"
12 namespace device {
14 class MockUsbService : public UsbService {
15 public:
16 MockUsbService();
17 ~MockUsbService() override;
19 void AddDevice(scoped_refptr<UsbDevice> device);
20 void RemoveDevice(scoped_refptr<UsbDevice> device);
22 protected:
23 // UsbService implementation:
24 scoped_refptr<UsbDevice> GetDevice(const std::string& guid) override;
25 void GetDevices(const GetDevicesCallback& callback) override;
27 std::map<std::string, scoped_refptr<UsbDevice>> devices_;
30 } // namespace device
32 #endif // DEVICE_USB_MOCK_USB_SERVICE_H_