| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // The type schemas for structured manifest items. Not actually a callable API. | 5 // The type schemas for structured manifest items. Not actually a callable API. |
| 6 | 6 |
| 7 [ | 7 [ |
| 8 { | 8 { |
| 9 "namespace": "extensionsManifestTypes", | 9 "namespace": "extensionsManifestTypes", |
| 10 "description": "Schemas for structured manifest entries", | 10 "description": "Schemas for structured manifest entries", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 }, | 153 }, |
| 154 "socket": { | 154 "socket": { |
| 155 "type": "boolean", | 155 "type": "boolean", |
| 156 "description": "If <code>true</code>, gives permission to an app to
use the $(ref:bluetoothSocket) API", | 156 "description": "If <code>true</code>, gives permission to an app to
use the $(ref:bluetoothSocket) API", |
| 157 "optional": true | 157 "optional": true |
| 158 }, | 158 }, |
| 159 "low_energy": { | 159 "low_energy": { |
| 160 "type": "boolean", | 160 "type": "boolean", |
| 161 "description": "If <code>true</code>, gives permission to an app to
use the $(ref:bluetoothLowEnergy) API", | 161 "description": "If <code>true</code>, gives permission to an app to
use the $(ref:bluetoothLowEnergy) API", |
| 162 "optional": true | 162 "optional": true |
| 163 }, |
| 164 "peripheral": { |
| 165 "type": "boolean", |
| 166 "description": "If <code>true</code>, gives permission to an app to
use the advertisement functions in the $(ref:bluetoothLowEnergy) API", |
| 167 "optional": true |
| 163 } | 168 } |
| 164 } | 169 } |
| 165 } | 170 } |
| 166 ] | 171 ] |
| 167 } | 172 } |
| 168 ] | 173 ] |
| OLD | NEW |