OLD | NEW |
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 Loading... |
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 but the resizeing may be not finished.", |
| 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 Loading... |
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 ] |
OLD | NEW |