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

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: Rebase on HEAD 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 3388 matching lines...) Expand 10 before | Expand all | Expand 10 after
3399 "type": "string", 3399 "type": "string",
3400 "name": "engineID", 3400 "name": "engineID",
3401 "description": "ID of the engine receiving the event" 3401 "description": "ID of the engine receiving the event"
3402 }, 3402 },
3403 { 3403 {
3404 "type": "string", 3404 "type": "string",
3405 "name": "name", 3405 "name": "name",
3406 "description": "Name of the MenuItem which was activated" 3406 "description": "Name of the MenuItem which was activated"
3407 } 3407 }
3408 ] 3408 ]
3409 },
3410 {
3411 "name": "onTextInputTypeChanged",
3412 "type": "function",
3413 "description": "This event is sent to the virtual keyboard when the text input type is changed.",
3414 "parameters": [
3415 {
3416 "type": "string",
3417 "name": "type",
3418 "enum": ["none", "text", "password", "search", "email", "number", "t el", "url"],
3419 "description": "Type of the current focused input field."
3420 }
3421 ]
3409 } 3422 }
3410 ] 3423 ]
3411 }, 3424 },
3412 { 3425 {
3413 "namespace": "inputMethodPrivate", 3426 "namespace": "inputMethodPrivate",
3414 "nodoc": true, 3427 "nodoc": true,
3415 "platforms": ["chromeos"], 3428 "platforms": ["chromeos"],
3416 "types": [], 3429 "types": [],
3417 "functions": [ 3430 "functions": [
3418 { 3431 {
(...skipping 4648 matching lines...) Expand 10 before | Expand all | Expand 10 after
8067 "description": "A string result code. The value is non-empty on success only in tests.", 8080 "description": "A string result code. The value is non-empty on success only in tests.",
8068 "optional": "true" 8081 "optional": "true"
8069 } 8082 }
8070 ] 8083 ]
8071 } 8084 }
8072 ] 8085 ]
8073 } 8086 }
8074 ] 8087 ]
8075 } 8088 }
8076 ] 8089 ]
OLDNEW
« no previous file with comments | « chrome/browser/ui/touch/keyboard/keyboard_manager.cc ('k') | views/ime/text_input_type_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698