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

Side by Side Diff: third_party/chrome/idl/experimental_input_virtual_keyboard.json

Issue 12261015: Import chrome idl into third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 [
6 {
7 "namespace": "experimental.input.virtualKeyboard",
8 "nodoc": true,
9 "types": [],
10 "functions": [
11 {
12 "name": "sendKeyboardEvent",
13 "type": "function",
14 "description": "Sends a keyboard event to Chrome.",
15 "parameters": [
16 { "type": "object",
17 "name": "event",
18 "properties": {
19 "type": {
20 "type": "string",
21 "description": "One of 'keyup' or 'keydown'."
22 },
23 "keyIdentifier": {
24 "type": "string",
25 "description": "See http://www.w3.org/TR/2003/NOTE-DOM-Level-3-E vents-20031107/keyset.html#KeySet-Set"
26 },
27 "altKey": {
28 "type": "boolean",
29 "optional": true,
30 "description": "Whether or not the ALT key is pressed."
31 },
32 "ctrlKey": {
33 "type": "boolean",
34 "optional": true,
35 "description": "Whether or not the CTRL key is pressed."
36 },
37 "metaKey": {
38 "type": "boolean",
39 "optional": true,
40 "description": "Whether or not the META key is pressed."
41 },
42 "shiftKey": {
43 "type": "boolean",
44 "optional": true,
45 "description": "Whether or not the SHIFT key is pressed."
46 }
47 },
48 "description": "The keyboard event to be sent."
49 },
50 { "type": "function",
51 "name": "callback",
52 "optional": true,
53 "description": "This function is called when the event processing is completed.",
54 "parameters": []
55 }
56 ]
57 }
58 ]
59 }
60 ]
OLDNEW
« no previous file with comments | « third_party/chrome/idl/experimental_infobars.json ('k') | third_party/chrome/idl/experimental_media_galleries.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698