| Index: chrome/common/extensions/api/input_method_private.json
|
| diff --git a/chrome/common/extensions/api/input_method_private.json b/chrome/common/extensions/api/input_method_private.json
|
| index d3ea0362e4f9a8538a0e73d8682ed64fd1d5d480..e7e248bd059d9fa9cf9ce6fd2ff1663d03086fb1 100644
|
| --- a/chrome/common/extensions/api/input_method_private.json
|
| +++ b/chrome/common/extensions/api/input_method_private.json
|
| @@ -113,17 +113,20 @@
|
| }, {
|
| "name": "onCompositionBoundsChanged",
|
| "type": "function",
|
| - "description": "Fired when the composition bounds are changed.",
|
| + "description": "Fired when the composition bounds or cursor bounds are changed.",
|
| "parameters": [
|
| {
|
| "name": "bounds",
|
| - "type": "object",
|
| - "description": "Composition bounds.",
|
| - "properties": {
|
| - "x": {"type": "integer"},
|
| - "y": {"type": "integer"},
|
| - "w": {"type": "integer"},
|
| - "h": {"type": "integer"}
|
| + "type": "array",
|
| + "description": "List of bounds information.",
|
| + "items": {
|
| + "type": "object",
|
| + "properties": {
|
| + "x": {"type": "integer"},
|
| + "y": {"type": "integer"},
|
| + "w": {"type": "integer"},
|
| + "h": {"type": "integer"}
|
| + }
|
| }
|
| }
|
| ]
|
|
|