Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1083)

Side by Side Diff: extensions/common/api/virtual_keyboard_private.json

Issue 2072333002: Fix js error in VK on debug build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698