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..80dadbd90c0bf862357609cd5b11b8982db93fd0 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": "getConfig", |
+ "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": { |
+ "isExperimentalEnabled": {"type": "boolean"} |
+ } |
+ } |
+ ] |
+ } |
+ ] |
+ }, { |
"name": "getInputMethods", |
"type": "function", |
"description": "Gets all whitelisted input methods.", |