summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorpaul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-17 22:13:39 +0000
committerpaul@chromium.org <paul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-17 22:13:39 +0000
commitb5218f50e208870f66058afc00dca77356447389 (patch)
tree0ad5bdf50c6c02ec309c404fe07f9c183c87e8d4 /webkit
parent38b7422971b554a0d376a39baee6af2bf60888c4 (diff)
downloadchromium_src-b5218f50e208870f66058afc00dca77356447389.zip
chromium_src-b5218f50e208870f66058afc00dca77356447389.tar.gz
chromium_src-b5218f50e208870f66058afc00dca77356447389.tar.bz2
Fix a bug introduced by a WebKit merge where we did not
tell our autocomplete popup to hide when it was closed. BUG=22032 TEST=Navigate to a page with an autocompletable input box (e.g. google.com login page) and notice that the autocomplete box hides when you select an item from it and hit enter. Review URL: http://codereview.chromium.org/211005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26503 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/webview_impl.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/webkit/glue/webview_impl.cc b/webkit/glue/webview_impl.cc
index 38d4f94..419ca4b 100644
--- a/webkit/glue/webview_impl.cc
+++ b/webkit/glue/webview_impl.cc
@@ -235,6 +235,7 @@ class AutocompletePopupMenuClient : public WebCore::PopupMenuClient {
return selected_index_;
}
virtual void popupDidHide() {
+ hidePopup();
}
virtual void hidePopup() {
webview_->HideAutoCompletePopup();