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

Unified Diff: chrome/browser/ui/omnibox/omnibox_view.cc

Issue 17112021: New method: InputMethod::IsCandidatePopupOpen() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 6 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/omnibox/omnibox_view.cc
diff --git a/chrome/browser/ui/omnibox/omnibox_view.cc b/chrome/browser/ui/omnibox/omnibox_view.cc
index 86b5bdda5e64dc129f39d9432bde5e54e890da1d..0d1d5a597734176bf8d696470ea8efea51371fde 100644
--- a/chrome/browser/ui/omnibox/omnibox_view.cc
+++ b/chrome/browser/ui/omnibox/omnibox_view.cc
@@ -129,8 +129,8 @@ void OmniboxView::CloseOmniboxPopup() {
bool OmniboxView::IsImeShowingPopup() const {
// Since not all the IMEs/platforms support the detection of a IME's popup
- // window, falls back to IsImeComposing().
- return IsImeComposing();
+ // window, returns false if unsure.
+ return false;
}
OmniboxView::OmniboxView(Profile* profile,

Powered by Google App Engine
This is Rietveld 408576698