Commit e6916571 authored by tbarzic's avatar tbarzic Committed by Commit bot

Fix an error in docs for manifest requirements for usbDevices permission

The "usbDevices" entry in permission list should be inside an object

Review URL: https://codereview.chromium.org/886353008

Cr-Commit-Position: refs/heads/master@{#314971}
parent 3b6d4f8f
...@@ -49,12 +49,14 @@ Bluetooth</a> samples. ...@@ -49,12 +49,14 @@ Bluetooth</a> samples.
<pre data-filename="manifest.json"> <pre data-filename="manifest.json">
"permissions": [ "permissions": [
"usbDevices": [ {
{ "usbDevices": [
"vendorId": 123, {
"productId": 456 "vendorId": 123,
} "productId": 456
] }
]
}
] ]
</pre> </pre>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment