diff options
author | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-27 21:36:20 +0000 |
---|---|---|
committer | mirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-27 21:36:20 +0000 |
commit | 3a6a3b65dff7f8c4544fe9ad0fbf600a3779633e (patch) | |
tree | f87a0c29399d8cdc832acbcf89fb5ef641ddef4e /chrome/browser/cocoa/status_bubble_mac.mm | |
parent | ee8d226ec025c66f948973e1f46b79871df1de94 (diff) | |
download | chromium_src-3a6a3b65dff7f8c4544fe9ad0fbf600a3779633e.zip chromium_src-3a6a3b65dff7f8c4544fe9ad0fbf600a3779633e.tar.gz chromium_src-3a6a3b65dff7f8c4544fe9ad0fbf600a3779633e.tar.bz2 |
This fixes the problem of the status bubble obscuring the download shelf.
BUG= http://crbug.com/6590
TEST=Cause the download shelf to appear by initiating a download. Hover
over a link in the extreme lower left corner of the browser window. The
status bubble should avoid your mouse by moving to the right, instead of
moving down and obscuring the download shelf.
Review URL: http://codereview.chromium.org/113671
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17025 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/status_bubble_mac.mm')
-rw-r--r-- | chrome/browser/cocoa/status_bubble_mac.mm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/status_bubble_mac.mm b/chrome/browser/cocoa/status_bubble_mac.mm index eeb82d1..160b086 100644 --- a/chrome/browser/cocoa/status_bubble_mac.mm +++ b/chrome/browser/cocoa/status_bubble_mac.mm @@ -188,6 +188,10 @@ void StatusBubbleMac::MouseMoved() { } } +void StatusBubbleMac::UpdateDownloadShelfVisibility(bool visible) { + NOTIMPLEMENTED(); +} + void StatusBubbleMac::Create() { if (window_) return; |