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

Unified Diff: ui/base/ime/remote_input_method_win.cc

Issue 1163603004: Remove candidate show/hide/update related code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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 | « ui/base/ime/input_method_win.cc ('k') | ui/base/ime/remote_input_method_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/remote_input_method_win.cc
diff --git a/ui/base/ime/remote_input_method_win.cc b/ui/base/ime/remote_input_method_win.cc
index b921382aa8c2b06c217274a56d0e5196fe32b2f1..9735b0e5bb881c687b278e623562827233797efd 100644
--- a/ui/base/ime/remote_input_method_win.cc
+++ b/ui/base/ime/remote_input_method_win.cc
@@ -301,14 +301,6 @@ class RemoteInputMethodWin : public InputMethod,
void OnCandidatePopupChanged(bool visible) override {
is_candidate_popup_open_ = visible;
- if (!text_input_client_)
- return;
- // TODO(kochi): Support 'update' case, in addition to show/hide.
- // http://crbug.com/238585
- if (visible)
- text_input_client_->OnCandidateWindowShown();
- else
- text_input_client_->OnCandidateWindowHidden();
}
void OnInputSourceChanged(LANGID langid, bool /*is_ime*/) override {
« no previous file with comments | « ui/base/ime/input_method_win.cc ('k') | ui/base/ime/remote_input_method_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698