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

Unified Diff: chrome/common/extensions/api/extension_api.json

Issue 7058046: Adjust virtual keyboard size base on input method candidates. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Update Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/extension_api.json
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index db843edb7201498d8238279aeb22fb388df4ae86..97420d5875dfebb4550cd1daab05780259421355 100644
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -2432,6 +2432,25 @@
]
},
{
+ "name": "setKeyboardHeight",
+ "type": "function",
+ "description": "Set the height of the keyboard UI.",
+ "parameters": [
+ { "type": "integer",
+ "name": "height",
+ "minimum": 0,
+ "optional": false,
+ "description": "The height of the keyboard UI."
+ },
+ { "type": "function",
+ "name": "callback",
+ "optional": true,
+ "description": "This function is called when the event processing is completed.",
bryeung 2011/06/03 19:14:52 Does this mean that it is only called when the vie
Peng 2011/06/03 22:22:10 Done.
+ "parameters": []
+ }
+ ]
+ },
+ {
"name": "sendHandwritingStroke",
"type": "function",
"description": "Send a handwriting event to Chrome.",

Powered by Google App Engine
This is Rietveld 408576698