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

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

Issue 1552743003: Add chrome.inputMethodPrivate.onImeMenuActivationChanged API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase with master Created 4 years, 11 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_method_private.json
diff --git a/chrome/common/extensions/api/input_method_private.json b/chrome/common/extensions/api/input_method_private.json
index 5afd08f2daa01374b040c40421628d59c4253c1d..2556bc19257ef0bc7c989e12e82529840eb78e0f 100644
--- a/chrome/common/extensions/api/input_method_private.json
+++ b/chrome/common/extensions/api/input_method_private.json
@@ -26,7 +26,8 @@
"type": "object",
"description": "The input method config object.",
"properties": {
- "isPhysicalKeyboardAutocorrectEnabled": {"type": "boolean"}
+ "isPhysicalKeyboardAutocorrectEnabled": {"type": "boolean"},
+ "isImeMenuActivated": {"type": "boolean"}
}
}
]
@@ -228,6 +229,17 @@
}
}
]
+ }, {
+ "name": "onImeMenuActivationChanged",
+ "type": "function",
+ "description": "Fired when the IME menu is activated or deactivated.",
+ "parameters": [
+ {
+ "name": "activation",
+ "type": "boolean",
+ "description": "Whether the IME menu is currently active."
+ }
+ ]
}
]
}

Powered by Google App Engine
This is Rietveld 408576698