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

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: Rebase 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/extension_permission_set.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "experimental.accessibility", 3 "namespace": "experimental.accessibility",
4 "nodoc": true, 4 "nodoc": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "AccessibilityObject", 7 "id": "AccessibilityObject",
8 "type": "object", 8 "type": "object",
9 "description": "Parent class for accessibility information about an obje ct.", 9 "description": "Parent class for accessibility information about an obje ct.",
10 "properties": { 10 "properties": {
(...skipping 3085 matching lines...) Expand 10 before | Expand all | Expand 10 after
3096 "name": "type", 3096 "name": "type",
3097 "enum": ["none", "text", "password", "search", "email", "number", "t el", "url"], 3097 "enum": ["none", "text", "password", "search", "email", "number", "t el", "url"],
3098 "description": "Type of the current focused input field." 3098 "description": "Type of the current focused input field."
3099 } 3099 }
3100 ] 3100 ]
3101 } 3101 }
3102 ] 3102 ]
3103 }, 3103 },
3104 { 3104 {
3105 "namespace": "experimental.input.ime", 3105 "namespace": "experimental.input.ime",
3106 "platforms": ["chromeos"],
3106 "nodoc": true, 3107 "nodoc": true,
3107 "types": [ 3108 "types": [
3108 { 3109 {
3109 "id": "KeyboardEvent", 3110 "id": "KeyboardEvent",
3110 "type": "object", 3111 "type": "object",
3111 "description": "See http://www.w3.org/TR/DOM-Level-3-Events/#events-Keyb oardEvent", 3112 "description": "See http://www.w3.org/TR/DOM-Level-3-Events/#events-Keyb oardEvent",
3112 "properties": { 3113 "properties": {
3113 "type": {"type": "string", "description": "One of keyup or keydown.", "enum": ["keyup", "keydown"]}, 3114 "type": {"type": "string", "description": "One of keyup or keydown.", "enum": ["keyup", "keydown"]},
3114 "requestId": {"type": "string", "description": "The ID of the request. "}, 3115 "requestId": {"type": "string", "description": "The ID of the request. "},
3115 "key": {"type": "string", "description": "Value of the key being press ed"}, 3116 "key": {"type": "string", "description": "Value of the key being press ed"},
(...skipping 6012 matching lines...) Expand 10 before | Expand all | Expand 10 after
9128 "enum": ["enabled", "disabled", "forced"], 9129 "enum": ["enabled", "disabled", "forced"],
9129 "description": "Exposes whether the incognito mode is available to windows. One of 'enabled', 'disabled' (user cannot browse pages in Incognito mode), 'forced' (all pages/sessions are forced into Incognito mode)." 9130 "description": "Exposes whether the incognito mode is available to windows. One of 'enabled', 'disabled' (user cannot browse pages in Incognito mode), 'forced' (all pages/sessions are forced into Incognito mode)."
9130 } 9131 }
9131 ] 9132 ]
9132 } 9133 }
9133 ] 9134 ]
9134 } 9135 }
9135 ] 9136 ]
9136 } 9137 }
9137 ] 9138 ]
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/extensions/extension_permission_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698