Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(918)

Side by Side Diff: chrome/common/extensions/docs/templates/articles/manifest/bluetooth.html

Issue 189263004: Bluetooth: write documentation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address armansito review comments Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <h1>bluetooth</h1>
mkearney1 2014/03/10 21:13:37 This should be Manifest - Bluetooth like the other
keybuk 2014/03/11 17:03:39 Done.
keybuk 2014/03/11 17:03:39 Done.
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" ]
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698