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 }, | 10 }, |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 "name": "onBoundsChanged", | 235 "name": "onBoundsChanged", |
236 "type": "function", | 236 "type": "function", |
237 "description": "This event is sent when virtual keyboard bounds changed
and overscroll/resize is enabled.", | 237 "description": "This event is sent when virtual keyboard bounds changed
and overscroll/resize is enabled.", |
238 "parameters": [ | 238 "parameters": [ |
239 { | 239 { |
240 "name": "bounds", | 240 "name": "bounds", |
241 "description": "The virtual keyboard bounds", | 241 "description": "The virtual keyboard bounds", |
242 "$ref": "Bounds" | 242 "$ref": "Bounds" |
243 } | 243 } |
244 ] | 244 ] |
| 245 }, |
| 246 { |
| 247 "name": "onKeyboardClosed", |
| 248 "type": "function", |
| 249 "description": "Fired when the virtual keyboard window has been closed.
For example, this can happen when turning off on-screen keyboard or exiting tabl
et mode." |
245 } | 250 } |
246 ] | 251 ] |
247 } | 252 } |
248 ] | 253 ] |
OLD | NEW |