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

Side by Side Diff: chrome/common/extensions/api/experimental_input_virtual_keyboard.json

Issue 14674004: DRAFT: Add setKeyboardVisibility API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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": "experimental.input.virtualKeyboard", 7 "namespace": "experimental.input.virtualKeyboard",
8 "nodoc": true, 8 "nodoc": true,
9 "types": [], 9 "types": [],
10 "functions": [ 10 "functions": [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 }, 47 },
48 "description": "The keyboard event to be sent." 48 "description": "The keyboard event to be sent."
49 }, 49 },
50 { "type": "function", 50 { "type": "function",
51 "name": "callback", 51 "name": "callback",
52 "optional": true, 52 "optional": true,
53 "description": "This function is called when the event processing is completed.", 53 "description": "This function is called when the event processing is completed.",
54 "parameters": [] 54 "parameters": []
55 } 55 }
56 ] 56 ]
57 },
58 {
59 "name": "setKeyboardVisibility",
60 "type": "function",
61 "description": "Force the visibility of the keyboard.",
62 "parameters" : [
63 { "type": "boolean",
64 "name": "visible",
65 "description": "True to make the virtual keyboard visible, false to make it hidden."
66 }
67 ]
57 } 68 }
58 ] 69 ]
59 } 70 }
60 ] 71 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698