| Index: chrome/browser/ui/panels/panel_browser_view.h
|
| ===================================================================
|
| --- chrome/browser/ui/panels/panel_browser_view.h (revision 97010)
|
| +++ chrome/browser/ui/panels/panel_browser_view.h (working copy)
|
| @@ -89,6 +89,9 @@
|
| virtual void NotifyPanelOnUserChangedTheme() OVERRIDE;
|
| virtual void DrawAttention() OVERRIDE;
|
| virtual bool IsDrawingAttention() const OVERRIDE;
|
| + virtual gfx::Size GetNonClientAreaExtent() const OVERRIDE;
|
| + virtual int GetRestoredHeight() const OVERRIDE;
|
| + virtual void SetRestoredHeight(int height) OVERRIDE;
|
| virtual Browser* GetPanelBrowser() const OVERRIDE;
|
| virtual void DestroyPanelBrowser() OVERRIDE;
|
|
|
| @@ -102,9 +105,9 @@
|
| scoped_ptr<Panel> panel_;
|
| gfx::Rect bounds_;
|
|
|
| - // Stores the original height of the panel so we can restore it after it's
|
| + // Stores the full height of the panel so we can restore it after it's
|
| // been minimized.
|
| - int original_height_;
|
| + int restored_height_;
|
|
|
| // Is the panel being closed? Do not use it when it is closed.
|
| bool closed_;
|
|
|