Index: chrome/common/extensions/docs/templates/articles/manifest/bluetooth.html |
diff --git a/chrome/common/extensions/docs/templates/articles/manifest/bluetooth.html b/chrome/common/extensions/docs/templates/articles/manifest/bluetooth.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..64d289b9346a09d5ac9775cb6ea745800e9980bf |
--- /dev/null |
+++ b/chrome/common/extensions/docs/templates/articles/manifest/bluetooth.html |
@@ -0,0 +1,28 @@ |
+<h1>bluetooth</h1> |
+ |
+<p> |
+The <code>bluetooth</code> manifest property declares which permissions are |
+available for the $ref:bluetooth API. |
+</p> |
+ |
+<h2 id="manifest">Sample manifest.json</h2> |
+<pre data-filename="manifest.json"> |
+{ |
+ "name": "My Bluetooth {{platform}}", |
+ "bluetooth": { |
+ // Permission for chrome.bluetooth.addProfile: |
+ // The application is allowed to make and receive connections |
+ // implementing the profiles identified by the UUIDs |
+ // 0x1105 and 0x1106. |
+ "profiles": [ "1105", "1106" ] |
armansito
2014/03/09 05:51:33
Add 128-bit UUID example to the list?
|
+ }, |
+ ... |
+} |
+</pre> |
+ |
+<section> |
+<h2 id="reference">Reference</h2> |
+<p class="api_reference"> |
+{{+partials.type type:apis.manifestTypes.byName.bluetooth/}} |
+</p> |
+</section> |