| Index: chrome/browser/views/status_bubble_views.h
|
| diff --git a/chrome/browser/views/status_bubble_views.h b/chrome/browser/views/status_bubble_views.h
|
| index 06bf6bde0d2bf7d6b148054cd72cf6bf93f5b570..78d3265626acfacbb0b4127c8bc1213390cc6e8d 100644
|
| --- a/chrome/browser/views/status_bubble_views.h
|
| +++ b/chrome/browser/views/status_bubble_views.h
|
| @@ -11,6 +11,9 @@
|
| #include "chrome/browser/status_bubble.h"
|
|
|
| class GURL;
|
| +namespace gfx {
|
| +class Point;
|
| +}
|
| namespace views {
|
| class Widget;
|
| }
|
| @@ -44,7 +47,7 @@ class StatusBubbleViews : public StatusBubble {
|
| virtual void SetStatus(const std::wstring& status);
|
| virtual void SetURL(const GURL& url, const std::wstring& languages);
|
| virtual void Hide();
|
| - virtual void MouseMoved();
|
| + virtual void MouseMoved(const gfx::Point& location, bool left_content);
|
| virtual void UpdateDownloadShelfVisibility(bool visible);
|
|
|
| private:
|
| @@ -55,7 +58,7 @@ class StatusBubbleViews : public StatusBubble {
|
|
|
| // Attempt to move the status bubble out of the way of the cursor, allowing
|
| // users to see links in the region normally occupied by the status bubble.
|
| - void AvoidMouse();
|
| + void AvoidMouse(const gfx::Point& location);
|
|
|
| // Returns true if the frame_ is visible and not minimized.
|
| bool IsFrameVisible();
|
|
|