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

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

Issue 10399046: Remove virtual keyboard support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: final rebase Created 8 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/experimental_input_virtual_keyboard.json
diff --git a/chrome/common/extensions/api/experimental_input_virtual_keyboard.json b/chrome/common/extensions/api/experimental_input_virtual_keyboard.json
index 6845d8f31806336e54cdaf46b086c397fc235aee..2aea6ca501d2ccb855917ce71e53d0e747247b66 100644
--- a/chrome/common/extensions/api/experimental_input_virtual_keyboard.json
+++ b/chrome/common/extensions/api/experimental_input_virtual_keyboard.json
@@ -54,85 +54,6 @@
"parameters": []
}
]
- },
- {
- "name": "hideKeyboard",
- "type": "function",
- "description": "Hides the keyboard UI.",
- "parameters": [
- { "type": "function",
- "name": "callback",
- "optional": true,
- "description": "This function is called when the event processing is completed.",
- "parameters": []
- }
- ]
- },
- {
- "name": "setKeyboardHeight",
- "type": "function",
- "description": "Sets 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 but the resizeing may be not finished.",
- "parameters": []
- }
- ]
- },
- {
- "name": "sendHandwritingStroke",
- "type": "function",
- "description": "Sends a handwriting event to Chrome.",
- "parameters": [
- {
- "name": "stroke",
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "x": {"type": "number", "minimum": 0, "maximum": 1},
- "y": {"type": "number", "minimum": 0, "maximum": 1}
- }
- }
- }
- ]
- },
- {
- "name": "cancelHandwritingStrokes",
- "type": "function",
- "description": "Clears last N handwriting strokes.",
- "parameters": [
- {
- "name": "strokeCount",
- "optional": true,
- "description": "The number of strokes to be removed. Pass 0 to remove all strokes. If omitted, removes all.",
- "type": "integer",
- "minimum": 0
- }
- ]
- }
- ],
- "events": [
- {
- "name": "onTextInputTypeChanged",
- "type": "function",
- "description": "This event is sent to the virtual keyboard when the text input type is changed.",
- "parameters": [
- {
- "type": "string",
- "name": "type",
- "enum": ["none", "text", "password", "search", "email", "number", "tel", "url"],
- "description": "Type of the current focused input field."
- }
- ]
}
]
}
« no previous file with comments | « chrome/common/extensions/api/experimental_input_ui.json ('k') | chrome/common/extensions/api/extension_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698