| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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": "experimental.input.virtualKeyboard", | 7 "namespace": "experimental.input.virtualKeyboard", |
| 8 "nodoc": true, | 8 "nodoc": true, |
| 9 "types": [], | 9 "types": [], |
| 10 "functions": [ | 10 "functions": [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 }, | 47 }, |
| 48 "description": "The keyboard event to be sent." | 48 "description": "The keyboard event to be sent." |
| 49 }, | 49 }, |
| 50 { "type": "function", | 50 { "type": "function", |
| 51 "name": "callback", | 51 "name": "callback", |
| 52 "optional": true, | 52 "optional": true, |
| 53 "description": "This function is called when the event processing is
completed.", | 53 "description": "This function is called when the event processing is
completed.", |
| 54 "parameters": [] | 54 "parameters": [] |
| 55 } | 55 } |
| 56 ] | 56 ] |
| 57 }, |
| 58 { |
| 59 "name": "setKeyboardVisibility", |
| 60 "type": "function", |
| 61 "description": "Force the visibility of the keyboard.", |
| 62 "parameters" : [ |
| 63 { "type": "boolean", |
| 64 "name": "visible", |
| 65 "description": "True to make the virtual keyboard visible, false to
make it hidden." |
| 66 } |
| 67 ] |
| 57 } | 68 } |
| 58 ] | 69 ] |
| 59 } | 70 } |
| 60 ] | 71 ] |
| OLD | NEW |