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

Unified Diff: chrome/common/extensions/api/experimental_input_ui.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_ui.json
diff --git a/chrome/common/extensions/api/experimental_input_ui.json b/chrome/common/extensions/api/experimental_input_ui.json
deleted file mode 100644
index 303d947f2f522365eed42107a1a748f376785a5d..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/experimental_input_ui.json
+++ /dev/null
@@ -1,146 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-[
- {
- "namespace": "experimental.input.ui",
- "nodoc": true,
- "platforms": ["chromeos touch"],
- "types": [],
- "functions": [
- {
- "name": "register",
- "type": "function",
- "description": "Registers the extension, so the extension can receive input method related events.",
- "parameters": [
- { "type": "function",
- "name": "callback",
- "optional": true,
- "description": "This function is called when the event processing is completed.",
- "parameters": []
- }
- ]
- },
- {
- "name": "candidateClicked",
- "type": "function",
- "description": "Notifies input method engine that a candidate was clicked.",
- "parameters": [
- { "type": "integer",
- "name": "index"
- },
- { "type": "integer",
- "name": "button"
- },
- { "type": "function",
- "name": "callback",
- "optional": true,
- "description": "This function is called when the event processing is completed.",
- "parameters": []
- }
- ]
- },
- {
- "name": "cursorUp",
- "type": "function",
- "description": "Notifies input method engine cursor up button was clicked.",
- "parameters": [
- { "type": "function",
- "name": "callback",
- "optional": true,
- "description": "This function is called when the event processing is completed.",
- "parameters": []
- }
- ]
- },
- {
- "name": "cursorDown",
- "type": "function",
- "description": "Notifies input method engine cursor down button was clicked.",
- "parameters": [
- { "type": "function",
- "name": "callback",
- "optional": true,
- "description": "This function is called when the event processing is completed.",
- "parameters": []
- }
- ]
- },
- {
- "name": "pageUp",
- "type": "function",
- "description": "Notifies input method engine page up button was clicked.",
- "parameters": [
- { "type": "function",
- "name": "callback",
- "optional": true,
- "description": "This function is called when the event processing is completed.",
- "parameters": []
- }
- ]
- },
- {
- "name": "pageDown",
- "type": "function",
- "description": "Notifies input method engine page down button was clicked.",
- "parameters": [
- { "type": "function",
- "name": "callback",
- "optional": true,
- "description": "This function is called when the event processing is completed.",
- "parameters": []
- }
- ]
- }
- ],
- "events": [
- {
- "name": "onSetCursorLocation",
- "type": "function",
- "description": "Fired when input cursor location is changed.",
- "parameters": [
- { "type": "integer",
- "name": "x"
- },
- { "type": "integer",
- "name": "y"
- },
- { "type": "integer",
- "name": "width"
- },
- { "type": "integer",
- "name": "height"
- }
- ]
- },
- {
- "name": "onUpdateAuxiliaryText",
- "type": "function",
- "description": "Fired when auxiliary text is changed.",
- "parameters": [
- { "type": "string",
- "name": "text",
- "description": "Auxiliary text."
- }
- ]
- },
- {
- "name": "onUpdateLookupTable",
- "type": "function",
- "description": "Fired when lookup table is updated.",
- "parameters": [
- { "type": "object",
- "name": "lookupTable",
- "properties": {
- "visible": { "type": "boolean" },
- "candidates": { "type": "array", "items": { "type": "string" } }
- },
- "description": "Lookup table"
- }
- ]
- }
-
- ]
- }
-]
« no previous file with comments | « chrome/common/chrome_notification_types.h ('k') | chrome/common/extensions/api/experimental_input_virtual_keyboard.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698