// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_DEVICE_PUBLIC_CPP_TEST_MOCK_USB_MOJO_DEVICE_H_ #define SERVICES_DEVICE_PUBLIC_CPP_TEST_MOCK_USB_MOJO_DEVICE_H_ #include <stdint.h> #include <vector> #include "base/containers/span.h" #include "services/device/public/mojom/usb_device.mojom.h" #include "testing/gmock/include/gmock/gmock.h" namespace device { // This class provides mock implementation for device::mojom::UsbDevice. // It should be used together with FakeUsbDeviceManager and // FakeUsbDeviceInfo just for testing. class MockUsbMojoDevice : public mojom::UsbDevice { … }; } // namespace device #endif // SERVICES_DEVICE_PUBLIC_CPP_TEST_MOCK_USB_MOJO_DEVICE_H_