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

Unified Diff: chrome/common/extensions/docs/templates/intros/input_ime.html

Issue 23452019: Fix examples which uses typo function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698