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

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: Remove unused function. Created 6 years, 10 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 ef006ddaadbf20792fa87d194a9177a44576ed41..d14b71f55bd93e8d15c54878a166b7984be1a56c 100644
--- a/chrome/common/extensions/api/manifest_types.json
+++ b/chrome/common/extensions/api/manifest_types.json
@@ -206,6 +206,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",
+ "items": {
+ "description": "<p>The list of profiles specified as UUID strings.</p>",
+ "type": "string"
+ }
+ }
+ }
}
]
}

Powered by Google App Engine
This is Rietveld 408576698