X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fcommon%2Fextensions%2Fapi%2Fmanifest_types.json;h=c003a426e03c5fd4c40b611e35b63a8d77318ccd;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=7f8f3af6f704014acf24ceacc02063a915a32f80;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/common/extensions/api/manifest_types.json b/src/chrome/common/extensions/api/manifest_types.json index 7f8f3af..c003a42 100644 --- a/src/chrome/common/extensions/api/manifest_types.json +++ b/src/chrome/common/extensions/api/manifest_types.json @@ -32,7 +32,7 @@ "items": {"type": "string"} }, "accepts_tls_channel_id": { - "description": "If true, messages sent via $ref:runtime.connect or $ref:runtime.sendMessage will set $ref:runtime.MessageSender.tlsChannelId if those methods request it to be. If false, $ref:runtime.MessageSender.tlsChannelId will never be set under any circumstance.", + "description": "If true, messages sent via $(ref:runtime.connect) or $(ref:runtime.sendMessage) will set $(ref:runtime.MessageSender.tlsChannelId) if those methods request it to be. If false, $(ref:runtime.MessageSender.tlsChannelId) will never be set under any circumstance.", "optional": true, "type": "boolean" } @@ -53,6 +53,11 @@ "description": "If true, the built-in bookmark button will be removed from the user interface.", "optional": true }, + "remove_bookmark_shortcut": { + "type": "boolean", + "description": "If true, the built-in \"Bookmark this page...\" shortcut key is removed and the extension is permitted to override the shortcut by binding it in the commands section of the manifest.", + "optional": true + }, // TODO(wittman): Remove for M36. "hide_bookmark_button": { "type": "boolean", @@ -206,6 +211,22 @@ } } } + }, + { + "id": "bluetooth", + "type": "object", + "description": "The bluetooth 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 profiles manifest property declares the list of profiles an app can register.", + "optional": true, + "type": "array", + "items": { + "description": "

The list of profiles specified as UUID strings.

", + "type": "string" + } + } + } } ] }