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 dd37694573522abb55620df7b557c89c3a318ca5..43c2fe0a0c660fc648356c1d111de8e8032c5b0a 100644 |
--- a/chrome/common/extensions/api/input_method_private.json |
+++ b/chrome/common/extensions/api/input_method_private.json |
@@ -172,6 +172,32 @@ |
} |
} |
] |
+ }, { |
+ "name": "onDictionaryLoaded", |
+ "type": "function", |
+ "description": "Fired when the custom spelling dictionary is loaded.", |
+ "parameters": [] |
+ }, { |
+ "name": "onDictionaryChanged", |
+ "type": "function", |
+ "description": "Fired when words are added or removed from the custom spelling dictionary.", |
+ "parameters": [ |
+ { |
+ "name": "added", |
+ "type": "array", |
+ "description": "List of added words.", |
+ "items": { |
+ "type": "string" |
+ } |
+ }, { |
+ "name": "removed", |
+ "type": "array", |
+ "description": "List of removed words.", |
+ "items": { |
+ "type": "string" |
+ } |
+ } |
+ ] |
} |
] |
} |