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

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

Issue 7058046: Adjust virtual keyboard size base on input method candidates. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Update Created 9 years, 6 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 2414 matching lines...) Expand 10 before | Expand all | Expand 10 after
2425 "parameters": [ 2425 "parameters": [
2426 { "type": "function", 2426 { "type": "function",
2427 "name": "callback", 2427 "name": "callback",
2428 "optional": true, 2428 "optional": true,
2429 "description": "This function is called when the event processing is completed.", 2429 "description": "This function is called when the event processing is completed.",
2430 "parameters": [] 2430 "parameters": []
2431 } 2431 }
2432 ] 2432 ]
2433 }, 2433 },
2434 { 2434 {
2435 "name": "setKeyboardHeight",
2436 "type": "function",
2437 "description": "Set the height of the keyboard UI.",
2438 "parameters": [
2439 { "type": "integer",
2440 "name": "height",
2441 "minimum": 0,
2442 "optional": false,
2443 "description": "The height of the keyboard UI."
2444 },
2445 { "type": "function",
2446 "name": "callback",
2447 "optional": true,
2448 "description": "This function is called when the event processing is completed.",
bryeung 2011/06/03 19:14:52 Does this mean that it is only called when the vie
Peng 2011/06/03 22:22:10 Done.
2449 "parameters": []
2450 }
2451 ]
2452 },
2453 {
2435 "name": "sendHandwritingStroke", 2454 "name": "sendHandwritingStroke",
2436 "type": "function", 2455 "type": "function",
2437 "description": "Send a handwriting event to Chrome.", 2456 "description": "Send a handwriting event to Chrome.",
2438 "parameters": [ 2457 "parameters": [
2439 { 2458 {
2440 "name": "stroke", 2459 "name": "stroke",
2441 "type": "array", 2460 "type": "array",
2442 "items": { 2461 "items": {
2443 "type": "object", 2462 "type": "object",
2444 "properties": { 2463 "properties": {
(...skipping 3344 matching lines...) Expand 10 before | Expand all | Expand 10 after
5789 { 5808 {
5790 "type": "integer", 5809 "type": "integer",
5791 "name": "tabId", 5810 "name": "tabId",
5792 "description": "The id of the tab that was detached." 5811 "description": "The id of the tab that was detached."
5793 } 5812 }
5794 ] 5813 ]
5795 } 5814 }
5796 ] 5815 ]
5797 } 5816 }
5798 ] 5817 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698