naiveproxy/device/usb/public/mojom/chooser_service.mojom
2018-08-14 22:19:20 +00:00

20 lines
689 B
Plaintext

// 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.
module device.mojom;
import "device/usb/public/mojom/device.mojom";
import "device/usb/public/mojom/device_manager.mojom";
interface UsbChooserService {
// Get permission from user to use the device.
//
// |device_filters| filters the available devices and the filtered
// devices will be listed for user to grant permission.
//
// |result| is the device that user grants permission to use.
GetPermission(array<device.mojom.UsbDeviceFilter> device_filters)
=> (device.mojom.UsbDeviceInfo? result);
};