summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/tab_contents_delegate.h
diff options
context:
space:
mode:
authormirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-27 21:36:20 +0000
committermirandac@chromium.org <mirandac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-27 21:36:20 +0000
commit3a6a3b65dff7f8c4544fe9ad0fbf600a3779633e (patch)
treef87a0c29399d8cdc832acbcf89fb5ef641ddef4e /chrome/browser/tab_contents/tab_contents_delegate.h
parentee8d226ec025c66f948973e1f46b79871df1de94 (diff)
downloadchromium_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/tab_contents/tab_contents_delegate.h')
-rw-r--r--chrome/browser/tab_contents/tab_contents_delegate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_delegate.h b/chrome/browser/tab_contents/tab_contents_delegate.h
index e937fec..a67355e 100644
--- a/chrome/browser/tab_contents/tab_contents_delegate.h
+++ b/chrome/browser/tab_contents/tab_contents_delegate.h
@@ -89,6 +89,9 @@ class TabContentsDelegate {
// Notification that the target URL has changed
virtual void UpdateTargetURL(TabContents* source, const GURL& url) = 0;
+ // Notification that the download shelf visibility state has been toggled.
+ virtual void UpdateDownloadShelfVisibility(bool visible) { }
+
// Notification that there was a mouse event
virtual void ContentsMouseEvent(TabContents* source, bool motion) { }