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

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

Issue 7553016: Use text input type to control visibility of virtual keyboard (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix reiview issues Created 9 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 3246 matching lines...) Expand 10 before | Expand all | Expand 10 after
3257 "type": "string", 3257 "type": "string",
3258 "name": "engineID", 3258 "name": "engineID",
3259 "description": "ID of the engine receiving the event" 3259 "description": "ID of the engine receiving the event"
3260 }, 3260 },
3261 { 3261 {
3262 "type": "string", 3262 "type": "string",
3263 "name": "name", 3263 "name": "name",
3264 "description": "Name of the MenuItem which was activated" 3264 "description": "Name of the MenuItem which was activated"
3265 } 3265 }
3266 ] 3266 ]
3267 },
3268 {
3269 "name": "onTextInputTypeChanged",
3270 "type": "function",
3271 "description": "This event is sent to virtual keyboard when the text inp ut type is changed.",
bryeung 2011/08/03 22:22:04 "to the virtual keyboard"
Peng 2011/08/04 19:47:53 Done.
3272 "parameters": [
3273 {
3274 "type": "string",
3275 "name": "type",
3276 "enum": ["none", "text", "password", "search", "email", "number", "t el", "url"],
3277 "description": "Type of the current focused input field."
3278 }
3279 ]
3267 } 3280 }
3268 ] 3281 ]
3269 }, 3282 },
3270 { 3283 {
3271 "namespace": "inputMethodPrivate", 3284 "namespace": "inputMethodPrivate",
3272 "nodoc": true, 3285 "nodoc": true,
3273 "platforms": ["chromeos"], 3286 "platforms": ["chromeos"],
3274 "types": [], 3287 "types": [],
3275 "functions": [ 3288 "functions": [
3276 { 3289 {
(...skipping 4071 matching lines...) Expand 10 before | Expand all | Expand 10 after
7348 "description": "A string result code. The value is non-empty on success only in tests.", 7361 "description": "A string result code. The value is non-empty on success only in tests.",
7349 "optional": "true" 7362 "optional": "true"
7350 } 7363 }
7351 ] 7364 ]
7352 } 7365 }
7353 ] 7366 ]
7354 } 7367 }
7355 ] 7368 ]
7356 } 7369 }
7357 ] 7370 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698