diff options
author | shuchen@chromium.org <shuchen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 10:56:44 +0000 |
---|---|---|
committer | shuchen@chromium.org <shuchen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-17 10:56:44 +0000 |
commit | 0ec4bb2efe23cc816b701ac45ea4cab123b5dc46 (patch) | |
tree | 8c1adc13c41cc90a0e42896fcd041d71c5a28645 /chrome/browser/chromeos/input_method/input_method_engine.cc | |
parent | c588beb8438a1bc2c27c48853cee9b160d641b3d (diff) | |
download | chromium_src-0ec4bb2efe23cc816b701ac45ea4cab123b5dc46.zip chromium_src-0ec4bb2efe23cc816b701ac45ea4cab123b5dc46.tar.gz chromium_src-0ec4bb2efe23cc816b701ac45ea4cab123b5dc46.tar.bz2 |
[IME] Resends onActive() and onFocus() events to IME extension after it adds listeners on them. And remove engine id from InputImeEventRouter.
BUG=352030
TEST=None
Review URL: https://codereview.chromium.org/197683005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257403 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/input_method/input_method_engine.cc')
-rw-r--r-- | chrome/browser/chromeos/input_method/input_method_engine.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/input_method/input_method_engine.cc b/chrome/browser/chromeos/input_method/input_method_engine.cc index 7fe3d93..42bfc58 100644 --- a/chrome/browser/chromeos/input_method/input_method_engine.cc +++ b/chrome/browser/chromeos/input_method/input_method_engine.cc @@ -122,7 +122,7 @@ const input_method::InputMethodDescriptor& InputMethodEngine::GetDescriptor() return descriptor_; } -void InputMethodEngine::StartIme() { +void InputMethodEngine::NotifyImeReady() { input_method::InputMethodManager* manager = input_method::InputMethodManager::Get(); if (manager && imm_id_ == manager->GetCurrentInputMethod().id()) |