| Index: chrome/browser/tab_contents/tab_contents_delegate.h
|
| diff --git a/chrome/browser/tab_contents/tab_contents_delegate.h b/chrome/browser/tab_contents/tab_contents_delegate.h
|
| index f5fdfcf552a5b7205fd6538b68e44f3deb6a6e82..b4d30097031ecbb1fe0ae5d63dd69edc99dbca7f 100644
|
| --- a/chrome/browser/tab_contents/tab_contents_delegate.h
|
| +++ b/chrome/browser/tab_contents/tab_contents_delegate.h
|
| @@ -94,11 +94,14 @@ class TabContentsDelegate {
|
| // Notification that the starredness of the current URL changed.
|
| virtual void URLStarredChanged(TabContents* source, bool starred) = 0;
|
|
|
| - // Notification that the target URL has changed
|
| + // Notification that the target URL has changed.
|
| virtual void UpdateTargetURL(TabContents* source, const GURL& url) = 0;
|
|
|
| - // Notification that there was a mouse event
|
| - virtual void ContentsMouseEvent(TabContents* source, bool motion) { }
|
| + // Notification that there was a mouse event, along with the absolute
|
| + // coordinates of the mouse pointer and whether it was a normal motion event
|
| + // (otherwise, the pointer left the contents area).
|
| + virtual void ContentsMouseEvent(
|
| + TabContents* source, const gfx::Point& location, bool motion) { }
|
|
|
| // Request the delegate to change the zoom level of the current tab.
|
| virtual void ContentsZoomChange(bool zoom_in) { }
|
|
|