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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 "parameters": [ | 153 "parameters": [ |
154 { | 154 { |
155 "type": "object", | 155 "type": "object", |
156 "name": "config", | 156 "name": "config", |
157 "properties": { | 157 "properties": { |
158 "layout": { | 158 "layout": { |
159 "type": "string", | 159 "type": "string", |
160 "minLength": 1, | 160 "minLength": 1, |
161 "description": "Virtual keyboard layout string." | 161 "description": "Virtual keyboard layout string." |
162 }, | 162 }, |
| 163 "hotrodmode": { |
| 164 "type": "boolean", |
| 165 "description": "Virtual keyboard is in hotrod mode." |
| 166 }, |
163 "a11ymode": { | 167 "a11ymode": { |
164 "type": "boolean", | 168 "type": "boolean", |
165 "description": "True if accessibility virtual keyboard is en
abled." | 169 "description": "True if accessibility virtual keyboard is en
abled." |
166 }, | 170 }, |
167 "features": { | 171 "features": { |
168 "type": "array", | 172 "type": "array", |
169 "items": { "type": "string" }, | 173 "items": { "type": "string" }, |
170 "description": "List of experimental feature flags." | 174 "description": "List of experimental feature flags." |
171 } | 175 } |
172 } | 176 } |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 { | 239 { |
236 "name": "bounds", | 240 "name": "bounds", |
237 "description": "The virtual keyboard bounds", | 241 "description": "The virtual keyboard bounds", |
238 "$ref": "Bounds" | 242 "$ref": "Bounds" |
239 } | 243 } |
240 ] | 244 ] |
241 } | 245 } |
242 ] | 246 ] |
243 } | 247 } |
244 ] | 248 ] |
OLD | NEW |