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" |
- } |
- ] |
- } |
- |
- ] |
- } |
-] |