diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-03 18:34:24 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-03 18:34:24 +0000 |
commit | 0f9cf9774f4bf04febc159f12c5b4e708a19ed4f (patch) | |
tree | 9ad5a5849fd3e7249cd12e1c61a6be2a98c7b520 /chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc | |
parent | d8018ea68dd32949dbf2d388c38c4ea23f7dbdf2 (diff) | |
download | chromium_src-0f9cf9774f4bf04febc159f12c5b4e708a19ed4f.zip chromium_src-0f9cf9774f4bf04febc159f12c5b4e708a19ed4f.tar.gz chromium_src-0f9cf9774f4bf04febc159f12c5b4e708a19ed4f.tar.bz2 |
Make the omnibox 2 hover code a tiny bit less goofy by removing a now-unused function (although it may have to come back eventually) and using the Model's conception of hover state instead of direct hot-tracking in the view.
Unfortunately, there are still problems, including bogus mousemove events for the same point and no WM_MOUSELEAVE events, all of which the old code handled. I think fixing this is going to require implementing a TODO in the code to hoist mouse handling to the main dropdown view, at which point I can probably address issue 13703 as well.
BUG=13279
TEST=none
Review URL: http://codereview.chromium.org/187002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25336 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc')
-rw-r--r-- | chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc b/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc index d197828..394077c 100644 --- a/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc +++ b/chrome/browser/autocomplete/autocomplete_popup_view_gtk.cc @@ -325,10 +325,6 @@ void AutocompletePopupViewGtk::UpdatePopupAppearance() { gtk_widget_queue_draw(window_); } -void AutocompletePopupViewGtk::OnHoverEnabledOrDisabled(bool disabled) { - NOTIMPLEMENTED(); -} - void AutocompletePopupViewGtk::PaintUpdatesNow() { // Paint our queued invalidations now, synchronously. gdk_window_process_updates(window_->window, FALSE); |