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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "type": "object", | 131 "type": "object", |
132 "name": "config", | 132 "name": "config", |
133 "properties": { | 133 "properties": { |
134 "layout": { | 134 "layout": { |
135 "type": "string", | 135 "type": "string", |
136 "minLength": 1, | 136 "minLength": 1, |
137 "description": "Virtual keyboard layout string." | 137 "description": "Virtual keyboard layout string." |
138 }, | 138 }, |
139 "a11ymode": { | 139 "a11ymode": { |
140 "type": "boolean", | 140 "type": "boolean", |
141 "description": "True if accessbility virtual keyboard is ena
bled." | 141 "description": "True if accessibility virtual keyboard is en
abled." |
142 }, | 142 }, |
143 "experimental": { | 143 "experimental": { |
144 "type": "boolean", | 144 "type": "boolean", |
145 "description": "True if experimental features are enabled." | 145 "description": "True if experimental features are enabled." |
146 } | 146 } |
147 } | 147 } |
148 } | 148 } |
149 ] | 149 ] |
150 } | 150 } |
151 ] | 151 ] |
(...skipping 22 matching lines...) Expand all Loading... |
174 "description": "The value of type attribute of the focused text
input box.", | 174 "description": "The value of type attribute of the focused text
input box.", |
175 "enum": ["text", "number", "password", "date", "url", "tel", "em
ail"] | 175 "enum": ["text", "number", "password", "date", "url", "tel", "em
ail"] |
176 } | 176 } |
177 } | 177 } |
178 } | 178 } |
179 ] | 179 ] |
180 } | 180 } |
181 ] | 181 ] |
182 } | 182 } |
183 ] | 183 ] |
OLD | NEW |