| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 [ | 5 [ |
| 6 { | 6 { |
| 7 "namespace": "virtualKeyboardPrivate", | 7 "namespace": "virtualKeyboardPrivate", |
| 8 "compiler_options": { | 8 "compiler_options": { |
| 9 "implemented_in": "extensions/browser/api/virtual_keyboard_private/virtual
_keyboard_private_api.h" | 9 "implemented_in": "extensions/browser/api/virtual_keyboard_private/virtual
_keyboard_private_api.h", |
| 10 "use_movable_types": true |
| 10 }, | 11 }, |
| 11 "platforms": ["chromeos"], | 12 "platforms": ["chromeos"], |
| 12 "description": "none", | 13 "description": "none", |
| 13 "types": [ | 14 "types": [ |
| 14 { | 15 { |
| 15 "id": "VirtualKeyboardEventType", | 16 "id": "VirtualKeyboardEventType", |
| 16 "type": "string", | 17 "type": "string", |
| 17 "description": "One of keyup or keydown.", | 18 "description": "One of keyup or keydown.", |
| 18 "enum": ["keyup", "keydown"] | 19 "enum": ["keyup", "keydown"] |
| 19 }, | 20 }, |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 { | 236 { |
| 236 "name": "bounds", | 237 "name": "bounds", |
| 237 "description": "The virtual keyboard bounds", | 238 "description": "The virtual keyboard bounds", |
| 238 "$ref": "Bounds" | 239 "$ref": "Bounds" |
| 239 } | 240 } |
| 240 ] | 241 ] |
| 241 } | 242 } |
| 242 ] | 243 ] |
| 243 } | 244 } |
| 244 ] | 245 ] |
| OLD | NEW |