Index: chrome/views/window/window.h |
=================================================================== |
--- chrome/views/window/window.h (revision 13759) |
+++ chrome/views/window/window.h (working copy) |
@@ -42,6 +42,9 @@ |
// Retrieves the window's bounds, including its frame. |
virtual gfx::Rect GetBounds() const = 0; |
+ // Retrieves the restored bounds for the window. |
+ virtual gfx::Rect GetNormalBounds() const = 0; |
+ |
// Sizes and/or places the window to the specified bounds, size or position. |
virtual void SetBounds(const gfx::Rect& bounds) = 0; |
@@ -78,6 +81,10 @@ |
virtual bool IsMaximized() const = 0; |
virtual bool IsMinimized() const = 0; |
+ // Accessors for fullscreen state. |
+ virtual void SetFullscreen(bool fullscreen) = 0; |
+ virtual bool IsFullscreen() const = 0; |
+ |
// Toggles the enable state for the Close button (and the Close menu item in |
// the system menu). |
virtual void EnableClose(bool enable) = 0; |