chromium/components/permissions/fake_usb_chooser_controller.h

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_PERMISSIONS_FAKE_USB_CHOOSER_CONTROLLER_H_
#define COMPONENTS_PERMISSIONS_FAKE_USB_CHOOSER_CONTROLLER_H_

#include <string>

#include "components/permissions/chooser_controller.h"

// A subclass of permissions::ChooserController that pretends to be a USB device
// chooser for testing. The result should be visually similar to the real
// version of the dialog for interactive tests.
class FakeUsbChooserController : public permissions::ChooserController {};

#endif  // COMPONENTS_PERMISSIONS_FAKE_USB_CHOOSER_CONTROLLER_H_