summaryrefslogtreecommitdiffstats
path: root/ui/views/ime
diff options
context:
space:
mode:
authorYukawa@chromium.org <Yukawa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 09:38:11 +0000
committerYukawa@chromium.org <Yukawa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 09:38:11 +0000
commit5a09c53cd299e590799888f0129c3de648692f17 (patch)
tree2a8767753ecb8400434ede9f6f03886974d15c36 /ui/views/ime
parent465fc2d426ca62a6fc6f080a28f9d43a9ca8ba5a (diff)
downloadchromium_src-5a09c53cd299e590799888f0129c3de648692f17.zip
chromium_src-5a09c53cd299e590799888f0129c3de648692f17.tar.gz
chromium_src-5a09c53cd299e590799888f0129c3de648692f17.tar.bz2
Revert preliminary code checked in as a part of r206146
crrev.com/206146 contains some preliminary code that was not intended to be included at this moment. This CL gets rid of those code. BUG=246534 Review URL: https://chromiumcodereview.appspot.com/16818022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206378 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/ime')
-rw-r--r--ui/views/ime/input_method_bridge.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/ui/views/ime/input_method_bridge.cc b/ui/views/ime/input_method_bridge.cc
index 8a99d38..aa9f015 100644
--- a/ui/views/ime/input_method_bridge.cc
+++ b/ui/views/ime/input_method_bridge.cc
@@ -36,11 +36,6 @@ void InputMethodBridge::OnFocus() {
if (shared_input_method_ || !host_->GetTextInputClient())
host_->SetFocusedTextInputClient(this);
- // TODO(ime): Refactor this.
-#if defined(OS_WIN) && !defined(USE_AURA)
- host_->OnFocus();
-#endif
-
// TODO(yusukes): We don't need to call OnTextInputTypeChanged() once we move
// text input type tracker code to ui::InputMethodBase.
if (GetFocusedView())
@@ -50,11 +45,6 @@ void InputMethodBridge::OnFocus() {
void InputMethodBridge::OnBlur() {
ConfirmCompositionText();
- // TODO(ime): Refactor this.
-#if defined(OS_WIN) && !defined(USE_AURA)
- host_->OnBlur();
-#endif
-
if (host_->GetTextInputClient() == this)
host_->SetFocusedTextInputClient(NULL);
}