Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <h1>bluetooth</h1> | |
| 2 | |
| 3 <p> | |
| 4 The <code>bluetooth</code> manifest property declares which permissions are | |
| 5 available for the $ref:bluetooth API. | |
| 6 </p> | |
| 7 | |
| 8 <h2 id="manifest">Sample manifest.json</h2> | |
| 9 <pre data-filename="manifest.json"> | |
| 10 { | |
| 11 "name": "My Bluetooth {{platform}}", | |
| 12 "bluetooth": { | |
| 13 // Permission for chrome.bluetooth.addProfile: | |
| 14 // The application is allowed to make and receive connections | |
| 15 // implementing the profiles identified by the UUIDs | |
| 16 // 0x1105 and 0x1106. | |
| 17 "profiles": [ "1105", "1106" ] | |
|
armansito
2014/03/09 05:51:33
Add 128-bit UUID example to the list?
| |
| 18 }, | |
| 19 ... | |
| 20 } | |
| 21 </pre> | |
| 22 | |
| 23 <section> | |
| 24 <h2 id="reference">Reference</h2> | |
| 25 <p class="api_reference"> | |
| 26 {{+partials.type type:apis.manifestTypes.byName.bluetooth/}} | |
| 27 </p> | |
| 28 </section> | |
| OLD | NEW |