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": "onKeyboardDestroyed", | |
Devlin
2016/07/14 17:44:51
"Destroyed" is kind of a weird name here. What ab
Azure Wei
2016/07/15 15:52:30
Done.
| |
248 "type": "function", | |
249 "description": "Fired when the virtual keyboard window has been destroye d.", | |
250 "parameters": [ | |
Devlin
2016/07/14 17:44:51
unneeded if empty.
Azure Wei
2016/07/15 15:52:30
Done.
| |
251 ] | |
245 } | 252 } |
246 ] | 253 ] |
247 } | 254 } |
248 ] | 255 ] |
OLD | NEW |