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

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

Issue 676593004: Adds experimental flag --enable-experimental-ime-features. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 0d11f640cf0217bdce0dbc673c0f31a476965f8d..d7d20745a0b67321763ca1f73b1c32e93193ddfe 100644
--- a/chrome/common/extensions/api/input_method_private.json
+++ b/chrome/common/extensions/api/input_method_private.json
@@ -9,6 +9,28 @@
"description": "none",
"functions": [
{
+ "name": "getInputMethodConfig",
+ "type": "function",
+ "description": "Gets configurations for input methods.",
+ "parameters": [
+ {
+ "name": "callback",
+ "type": "function",
+ "optional": false,
+ "description": "Callback which is called with the config object.",
+ "parameters": [
+ {
+ "name": "config",
+ "type": "object",
+ "description": "The input method config object.",
+ "properties": {
+ "isPhysicalKeyboardAutocorrectEnabled": {"type": "boolean"}
+ }
+ }
+ ]
+ }
+ ]
+ }, {
"name": "getInputMethods",
"type": "function",
"description": "Gets all whitelisted input methods.",

Powered by Google App Engine
This is Rietveld 408576698