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

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

Issue 1771173002: Implement input.ime.sendKeyEvents API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test failure. Created 4 years, 9 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/input_ime.json
diff --git a/chrome/common/extensions/api/input_ime.json b/chrome/common/extensions/api/input_ime.json
index 0f981fc4e0d21fb86c6297431894e8c50903218d..4656903ac0539598ae4c7c4e9d679c01697ad307 100644
--- a/chrome/common/extensions/api/input_ime.json
+++ b/chrome/common/extensions/api/input_ime.json
@@ -269,7 +269,7 @@
"name": "sendKeyEvents",
"type": "function",
"description": "Sends the key events. This function is expected to be used by virtual keyboards. When key(s) on a virtual keyboard is pressed by a user, this function is used to propagate that event to the system.",
- "platforms": ["chromeos"],
+ "platforms": ["chromeos", "win", "linux"],
"parameters": [
{
"name": "parameters",
@@ -744,7 +744,7 @@
{
"name": "onKeyEvent",
"type": "function",
- "description": "This event is sent if this extension owns the active IME.",
+ "description": "Fired when a key event is sent from the operating system. The event will be sent to the extension if this extension owns the active IME.",
"platforms": ["chromeos", "win", "linux"],
"options": {
"supportsFilters": false,

Powered by Google App Engine
This is Rietveld 408576698