Index: chrome/common/extensions/docs/templates/intros/input_ime.html |
diff --git a/chrome/common/extensions/docs/templates/intros/input_ime.html b/chrome/common/extensions/docs/templates/intros/input_ime.html |
index a0df297a70e657f1b0a2f983d6006f70c6d15b98..5b8eea41bc7e3010b8c014d6e0c04127cf7c4774 100644 |
--- a/chrome/common/extensions/docs/templates/intros/input_ime.html |
+++ b/chrome/common/extensions/docs/templates/intros/input_ime.html |
@@ -25,7 +25,7 @@ chrome.input.ime.onFocus.addListener(function(context) { |
context_id = context.contextID; |
}); |
-chrome.input.ime.onKeyEventAsync.addListener( |
+chrome.input.ime.onKeyEvent.addListener( |
function(engineID, keyData) { |
if (keyData.type == "keydown" && keyData.key.match(/^[a-z]$/)) { |
chrome.input.ime.commitText({"contextID": context_id, |