diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-20 23:07:54 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-20 23:07:54 +0000 |
commit | ca4a101838945366b577a272ccd3857a51ed2974 (patch) | |
tree | 675e1048a5280ea355e6d6a3de3c9933ad2bf2e4 /chrome/views/tooltip_manager.h | |
parent | 5e49546581a5a4c2c02d718f9d6e3dbebd7bebc7 (diff) | |
download | chromium_src-ca4a101838945366b577a272ccd3857a51ed2974.zip chromium_src-ca4a101838945366b577a272ccd3857a51ed2974.tar.gz chromium_src-ca4a101838945366b577a272ccd3857a51ed2974.tar.bz2 |
Fixes bug where tooltips would get stuck. This was happening because
on Vista we manage showing/hiding tooltips ourself. It would appear
when managing our own tooltips like this we need to explicitly hide
the tooltip. If you rapidly moved the mouse we wouldn't get a mouse
move and the tooltip would stick. The fix is to have ContainerWin
forward mouse leave and have the tooltip manager close the tooltip on
mouse leave.
BUG=2717
TEST=on vista do the following. Add a bookmark to the bookmark bar and
hover the mouse over it. Then hit control-b so the bookmark bar
disappears. Make sure the tooltip disappears too.
Review URL: http://codereview.chromium.org/11540
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5798 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/tooltip_manager.h')
-rw-r--r-- | chrome/views/tooltip_manager.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/views/tooltip_manager.h b/chrome/views/tooltip_manager.h index 5050923..f1aab66a 100644 --- a/chrome/views/tooltip_manager.h +++ b/chrome/views/tooltip_manager.h @@ -76,6 +76,8 @@ class TooltipManager { // Message handlers. These forward to the tooltip control. virtual void OnMouse(UINT u_msg, WPARAM w_param, LPARAM l_param); LRESULT OnNotify(int w_param, NMHDR* l_param, bool* handled); + // Not used directly by TooltipManager, but provided for AeroTooltipManager. + virtual void OnMouseLeave() {} protected: virtual void Init(); |