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 2430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2441 "parameters": [ | 2441 "parameters": [ |
2442 { "type": "function", | 2442 { "type": "function", |
2443 "name": "callback", | 2443 "name": "callback", |
2444 "optional": true, | 2444 "optional": true, |
2445 "description": "This function is called when the event processing is
completed.", | 2445 "description": "This function is called when the event processing is
completed.", |
2446 "parameters": [] | 2446 "parameters": [] |
2447 } | 2447 } |
2448 ] | 2448 ] |
2449 }, | 2449 }, |
2450 { | 2450 { |
| 2451 "name": "setKeyboardHeight", |
| 2452 "type": "function", |
| 2453 "description": "Set the height of the keyboard UI.", |
| 2454 "parameters": [ |
| 2455 { "type": "integer", |
| 2456 "name": "height", |
| 2457 "minimum": 0, |
| 2458 "optional": false, |
| 2459 "description": "The height of the keyboard UI." |
| 2460 }, |
| 2461 { "type": "function", |
| 2462 "name": "callback", |
| 2463 "optional": true, |
| 2464 "description": "This function is called when the event processing is
completed but the resizeing may be not finished.", |
| 2465 "parameters": [] |
| 2466 } |
| 2467 ] |
| 2468 }, |
| 2469 { |
2451 "name": "sendHandwritingStroke", | 2470 "name": "sendHandwritingStroke", |
2452 "type": "function", | 2471 "type": "function", |
2453 "description": "Send a handwriting event to Chrome.", | 2472 "description": "Send a handwriting event to Chrome.", |
2454 "parameters": [ | 2473 "parameters": [ |
2455 { | 2474 { |
2456 "name": "stroke", | 2475 "name": "stroke", |
2457 "type": "array", | 2476 "type": "array", |
2458 "items": { | 2477 "items": { |
2459 "type": "object", | 2478 "type": "object", |
2460 "properties": { | 2479 "properties": { |
(...skipping 3569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6030 { | 6049 { |
6031 "type": "integer", | 6050 "type": "integer", |
6032 "name": "tabId", | 6051 "name": "tabId", |
6033 "description": "The id of the tab that was detached." | 6052 "description": "The id of the tab that was detached." |
6034 } | 6053 } |
6035 ] | 6054 ] |
6036 } | 6055 } |
6037 ] | 6056 ] |
6038 } | 6057 } |
6039 ] | 6058 ] |
OLD | NEW |