diff options
Diffstat (limited to 'chrome/browser/ui/views/frame/browser_view.h')
-rw-r--r-- | chrome/browser/ui/views/frame/browser_view.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h index 4ede546..b84dbc9 100644 --- a/chrome/browser/ui/views/frame/browser_view.h +++ b/chrome/browser/ui/views/frame/browser_view.h @@ -102,14 +102,6 @@ class BrowserView : public BrowserBubbleHost, // Returns a Browser instance of this view. Browser* browser() const { return browser_.get(); } - // Called by the frame to notify the BrowserView that it was moved, and that - // any dependent popup windows should be repositioned. - void WindowMoved(); - - // Called by the frame to notify the BrowserView that a move or resize was - // initiated. - void WindowMoveOrResizeStarted(); - // Returns the apparent bounds of the toolbar, in BrowserView coordinates. // These differ from |toolbar_.bounds()| in that they match where the toolbar // background image is drawn -- slightly outside the "true" bounds @@ -372,7 +364,9 @@ class BrowserView : public BrowserBubbleHost, virtual bool GetSavedMaximizedState(bool* maximized) const OVERRIDE; virtual views::View* GetContentsView() OVERRIDE; virtual views::ClientView* CreateClientView(views::Window* window) OVERRIDE; - virtual void OnWindowActivate(bool active) OVERRIDE; + virtual void OnWindowActivationChanged(bool active) OVERRIDE; + virtual void OnWindowBeginUserBoundsChange() OVERRIDE; + virtual void OnWidgetMove() OVERRIDE; // Overridden from views::ClientView: virtual bool CanClose() OVERRIDE; |