Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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. | |
| 4 | |
| 5 module webusb; | |
| 6 | |
| 7 import "device/devices_app/usb/public/interfaces/device.mojom"; | |
| 8 import "device/devices_app/usb/public/interfaces/device_manager.mojom"; | |
| 9 | |
| 10 interface WebUsbPermissionBubble { | |
| 11 GetPermission(array<device.usb.DeviceFilter> device_filters) | |
|
Reilly Grant (use Gerrit)
2015/10/14 21:08:47
Please document what this interface is supposed to
juncai
2015/10/14 22:54:37
Done.
| |
| 12 => (device.usb.DeviceInfo? result); | |
| 13 }; | |
| OLD | NEW |