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

Unified Diff: chrome/browser/ui/views/omnibox/omnibox_view_win.cc

Issue 11305002: Support TSF related event handling on NativeTextField (Closed) Base URL: http://git.chromium.org/chromium/src.git@findbar_fix
Patch Set: Created 8 years, 2 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
Index: chrome/browser/ui/views/omnibox/omnibox_view_win.cc
diff --git a/chrome/browser/ui/views/omnibox/omnibox_view_win.cc b/chrome/browser/ui/views/omnibox/omnibox_view_win.cc
index 3023d56936f297b4cca1991c241b5c8b75dd72c8..1ddfbbb03db6eb97cea9c4aa29626640a7377297 100644
--- a/chrome/browser/ui/views/omnibox/omnibox_view_win.cc
+++ b/chrome/browser/ui/views/omnibox/omnibox_view_win.cc
@@ -917,7 +917,7 @@ bool OmniboxViewWin::OnAfterPossibleChangeInternal(bool force_text_changed) {
return something_changed;
}
-void OmniboxViewWin::OnTextUpdated() {
+void OmniboxViewWin::OnTextUpdated(const ui::Range& /*composition_range*/) {
if (ignore_ime_messages_)
return;
OnAfterPossibleChangeInternal(true);
@@ -928,6 +928,10 @@ void OmniboxViewWin::OnTextUpdated() {
OnBeforePossibleChange();
}
+void OmniboxViewWin::OnTsfStartComposition() {}
Peter Kasting 2012/10/27 19:00:46 Does this message give us what we need in order to
Seigo Nonaka 2012/10/27 22:20:18 Unfortunately no, because OnTsfstartComosition is
+
+void OmniboxViewWin::OnTsfEndComposition() {}
+
void OmniboxViewWin::OnCandidateWindowCountChanged(size_t window_count) {
ime_candidate_window_open_ = (window_count != 0);
if (ime_candidate_window_open_) {

Powered by Google App Engine
This is Rietveld 408576698