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

Unified Diff: chrome/common/extensions/api/manifest_types.json

Issue 145663004: Replace "bluetooth" permission with manifest property. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/manifest_types.json
diff --git a/chrome/common/extensions/api/manifest_types.json b/chrome/common/extensions/api/manifest_types.json
index a2cc9d3bda106cde82f19f5b973f6c04e2ccb450..f6f53975106cffca4618767688239ace250375d6 100644
--- a/chrome/common/extensions/api/manifest_types.json
+++ b/chrome/common/extensions/api/manifest_types.json
@@ -200,6 +200,22 @@
}
}
}
+ },
+ {
+ "id": "bluetooth",
+ "type": "object",
+ "description": "The <code>bluetooth</code> manifest property give permission to an app to use the $ref:bluetooth API. A list of profile IDs can be optionally specified to enable communication with specific device types",
+ "properties": {
+ "profiles": {
+ "description": "The <code>profiles</code> manifest property declares the list of profiles an app can register.",
+ "optional": true,
+ "type": "array",
not at google - send to devlin 2014/01/23 20:29:12 (FWIW it was an optional array that the JSON schem
rpaquay 2014/01/24 16:58:23 Ok, thanks for the info.
+ "items": {
+ "description": "<p>The list of profiles specified as UUID strings.</p>",
+ "type": "string"
+ }
+ }
+ }
}
]
}

Powered by Google App Engine
This is Rietveld 408576698