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.h | |
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.h')
-rw-r--r-- | chrome/browser/autocomplete/autocomplete_popup_view.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/chrome/browser/autocomplete/autocomplete_popup_view.h b/chrome/browser/autocomplete/autocomplete_popup_view.h index 344ab9c..0dc8e35 100644 --- a/chrome/browser/autocomplete/autocomplete_popup_view.h +++ b/chrome/browser/autocomplete/autocomplete_popup_view.h @@ -51,9 +51,6 @@ class AutocompletePopupView { // mean opening or closing the window. virtual void UpdatePopupAppearance() = 0; - // Called by the model when hover is enabled or disabled. - virtual void OnHoverEnabledOrDisabled(bool disabled) = 0; - // Paint any pending updates. virtual void PaintUpdatesNow() = 0; |