diff options
author | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-19 15:10:15 +0000 |
---|---|---|
committer | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-19 15:10:15 +0000 |
commit | b640603331a241ea5a93362c0897055294a89e10 (patch) | |
tree | 6d9a1af39e234e7e4902a8f11ccfd764f9850244 /chrome/browser/tab_contents/tab_contents_delegate.h | |
parent | 118a297a98ea3d50be6474c3b1ecec25f64b38ed (diff) | |
download | chromium_src-b640603331a241ea5a93362c0897055294a89e10.zip chromium_src-b640603331a241ea5a93362c0897055294a89e10.tar.gz chromium_src-b640603331a241ea5a93362c0897055294a89e10.tar.bz2 |
Plumb up mouse motion for the status bubbles.
Review URL: http://codereview.chromium.org/48151
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12091 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.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/tab_contents_delegate.h b/chrome/browser/tab_contents/tab_contents_delegate.h index 74cee1e..b7b0825 100644 --- a/chrome/browser/tab_contents/tab_contents_delegate.h +++ b/chrome/browser/tab_contents/tab_contents_delegate.h @@ -88,8 +88,8 @@ class TabContentsDelegate : public PageNavigator { // Notification that the target URL has changed virtual void UpdateTargetURL(TabContents* source, const GURL& url) = 0; - // Notification that the target URL has changed - virtual void ContentsMouseEvent(TabContents* source, uint32 message) { } + // Notification that there was a mouse event + virtual void ContentsMouseEvent(TabContents* source, bool motion) { } // Request the delegate to change the zoom level of the current tab. virtual void ContentsZoomChange(bool zoom_in) { } |