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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "parameters": [ | 99 "parameters": [ |
100 { "type": "function", | 100 { "type": "function", |
101 "name": "callback", | 101 "name": "callback", |
102 "optional": true, | 102 "optional": true, |
103 "description": "Called when the keyboard is hidden.", | 103 "description": "Called when the keyboard is hidden.", |
104 "parameters": [] | 104 "parameters": [] |
105 } | 105 } |
106 ] | 106 ] |
107 }, | 107 }, |
108 { | 108 { |
| 109 "name": "setHotrodKeyboard", |
| 110 "type": "function", |
| 111 "description": "Sets the state of the hotrod virtual keyboard. This API
should only be used by hotrod.", |
| 112 "parameters": [ |
| 113 { |
| 114 "type": "boolean", |
| 115 "name": "enable" |
| 116 } |
| 117 ] |
| 118 }, |
| 119 { |
109 "name": "lockKeyboard", | 120 "name": "lockKeyboard", |
110 "type": "function", | 121 "type": "function", |
111 "description": "Sets the lock state of the virtual keyboard. A locked ke
yboard remains visible even after a text area loses input focus.", | 122 "description": "Sets the lock state of the virtual keyboard. A locked ke
yboard remains visible even after a text area loses input focus.", |
112 "parameters": [ | 123 "parameters": [ |
113 { | 124 { |
114 "type": "boolean", | 125 "type": "boolean", |
115 "name": "lock" | 126 "name": "lock" |
116 } | 127 } |
117 ] | 128 ] |
118 }, | 129 }, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 { | 235 { |
225 "name": "bounds", | 236 "name": "bounds", |
226 "description": "The virtual keyboard bounds", | 237 "description": "The virtual keyboard bounds", |
227 "$ref": "Bounds" | 238 "$ref": "Bounds" |
228 } | 239 } |
229 ] | 240 ] |
230 } | 241 } |
231 ] | 242 ] |
232 } | 243 } |
233 ] | 244 ] |
OLD | NEW |