blob: 6d6df63bcad7d5a4245d578e6b2492703a5c32d1 [file] [log] [blame]
// 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 <memory>
#include "device/base/device_client.h"
namespace device {
class HidService;
class UsbService;
class TestDeviceClient : public DeviceClient {
public:
TestDeviceClient();
// Must be destroyed when tasks can still be posted to |task_runner|.
~TestDeviceClient() override;
HidService* GetHidService() override;
UsbService* GetUsbService() override;
private:
std::unique_ptr<HidService> hid_service_;
std::unique_ptr<UsbService> usb_service_;
};
} // namespace device