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

Side by Side Diff: chrome/common/extensions/api/extension_api.json

Issue 8757015: Rename permission from input to ime. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code Review Created 9 years 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
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "MessageSender", 6 "id": "MessageSender",
7 "type": "object", 7 "type": "object",
8 "description": "An object containing information about the script contex t that sent a message or request.", 8 "description": "An object containing information about the script contex t that sent a message or request.",
9 "properties": { 9 "properties": {
10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."}, 10 "tab": {"$ref": "Tab", "optional": true, "description":"This property will <b>only</b> be present when the connection was opened from a tab or content script."},
(...skipping 3343 matching lines...) Expand 10 before | Expand all | Expand 10 after
3354 "name": "type", 3354 "name": "type",
3355 "enum": ["none", "text", "password", "search", "email", "number", "t el", "url"], 3355 "enum": ["none", "text", "password", "search", "email", "number", "t el", "url"],
3356 "description": "Type of the current focused input field." 3356 "description": "Type of the current focused input field."
3357 } 3357 }
3358 ] 3358 ]
3359 } 3359 }
3360 ] 3360 ]
3361 }, 3361 },
3362 { 3362 {
3363 "namespace": "experimental.input.ime", 3363 "namespace": "experimental.input.ime",
3364 "platforms": ["chromeos"],
3364 "nodoc": true, 3365 "nodoc": true,
3365 "types": [ 3366 "types": [
3366 { 3367 {
3367 "id": "KeyboardEvent", 3368 "id": "KeyboardEvent",
3368 "type": "object", 3369 "type": "object",
3369 "description": "See http://www.w3.org/TR/DOM-Level-3-Events/#events-Keyb oardEvent", 3370 "description": "See http://www.w3.org/TR/DOM-Level-3-Events/#events-Keyb oardEvent",
3370 "properties": { 3371 "properties": {
3371 "type": {"type": "string", "description": "One of keyup or keydown.", "enum": ["keyup", "keydown"]}, 3372 "type": {"type": "string", "description": "One of keyup or keydown.", "enum": ["keyup", "keydown"]},
3372 "requestId": {"type": "string", "description": "The ID of the request. "}, 3373 "requestId": {"type": "string", "description": "The ID of the request. "},
3373 "key": {"type": "string", "description": "Value of the key being press ed"}, 3374 "key": {"type": "string", "description": "Value of the key being press ed"},
(...skipping 5960 matching lines...) Expand 10 before | Expand all | Expand 10 after
9334 } 9335 }
9335 } 9336 }
9336 } 9337 }
9337 ] 9338 ]
9338 } 9339 }
9339 ] 9340 ]
9340 } 9341 }
9341 ] 9342 ]
9342 } 9343 }
9343 ] 9344 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698