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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 "parameters": [ | 93 "parameters": [ |
94 { "type": "function", | 94 { "type": "function", |
95 "name": "callback", | 95 "name": "callback", |
96 "optional": true, | 96 "optional": true, |
97 "description": "Called when the keyboard is hidden.", | 97 "description": "Called when the keyboard is hidden.", |
98 "parameters": [] | 98 "parameters": [] |
99 } | 99 } |
100 ] | 100 ] |
101 }, | 101 }, |
102 { | 102 { |
| 103 "name": "setHotrodKeyboard", |
| 104 "type": "function", |
| 105 "description": "Sets the state of the hotrod virtual keyboard. This API
should only be used by hotrod.", |
| 106 "parameters": [ |
| 107 { |
| 108 "type": "boolean", |
| 109 "name": "enable" |
| 110 } |
| 111 ] |
| 112 }, |
| 113 { |
103 "name": "lockKeyboard", | 114 "name": "lockKeyboard", |
104 "type": "function", | 115 "type": "function", |
105 "description": "Sets the lock state of the virtual keyboard. A locked ke
yboard remains visible even after a text area loses input focus.", | 116 "description": "Sets the lock state of the virtual keyboard. A locked ke
yboard remains visible even after a text area loses input focus.", |
106 "parameters": [ | 117 "parameters": [ |
107 { | 118 { |
108 "type": "boolean", | 119 "type": "boolean", |
109 "name": "lock" | 120 "name": "lock" |
110 } | 121 } |
111 ] | 122 ] |
112 }, | 123 }, |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 { | 217 { |
207 "name": "bounds", | 218 "name": "bounds", |
208 "description": "The virtual keyboard bounds", | 219 "description": "The virtual keyboard bounds", |
209 "$ref": "Bounds" | 220 "$ref": "Bounds" |
210 } | 221 } |
211 ] | 222 ] |
212 } | 223 } |
213 ] | 224 ] |
214 } | 225 } |
215 ] | 226 ] |
OLD | NEW |