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

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

Issue 1843163003: [Extensions] Convert APIs to use movable types [14] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
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 "use_movable_types": true
10 }, 11 },
11 "platforms": ["chromeos"], 12 "platforms": ["chromeos"],
12 "description": "none", 13 "description": "none",
13 "types": [ 14 "types": [
14 { 15 {
15 "id": "VirtualKeyboardEventType", 16 "id": "VirtualKeyboardEventType",
16 "type": "string", 17 "type": "string",
17 "description": "One of keyup or keydown.", 18 "description": "One of keyup or keydown.",
18 "enum": ["keyup", "keydown"] 19 "enum": ["keyup", "keydown"]
19 }, 20 },
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 { 236 {
236 "name": "bounds", 237 "name": "bounds",
237 "description": "The virtual keyboard bounds", 238 "description": "The virtual keyboard bounds",
238 "$ref": "Bounds" 239 "$ref": "Bounds"
239 } 240 }
240 ] 241 ]
241 } 242 }
242 ] 243 ]
243 } 244 }
244 ] 245 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698