| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 // BaseWindow overrides. | 116 // BaseWindow overrides. |
| 117 virtual bool IsActive() const OVERRIDE; | 117 virtual bool IsActive() const OVERRIDE; |
| 118 virtual bool IsMaximized() const OVERRIDE; | 118 virtual bool IsMaximized() const OVERRIDE; |
| 119 virtual bool IsMinimized() const OVERRIDE; | 119 virtual bool IsMinimized() const OVERRIDE; |
| 120 virtual bool IsFullscreen() const OVERRIDE; | 120 virtual bool IsFullscreen() const OVERRIDE; |
| 121 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; | 121 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; |
| 122 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 122 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 123 virtual gfx::Rect GetBounds() const OVERRIDE; | 123 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 124 virtual void Show() OVERRIDE; | 124 virtual void Show() OVERRIDE; |
| 125 virtual void ShowInactive() OVERRIDE; | 125 virtual void ShowInactive() OVERRIDE; |
| 126 virtual void Hide() OVERRIDE; |
| 126 virtual void Close() OVERRIDE; | 127 virtual void Close() OVERRIDE; |
| 127 virtual void Activate() OVERRIDE; | 128 virtual void Activate() OVERRIDE; |
| 128 virtual void Deactivate() OVERRIDE; | 129 virtual void Deactivate() OVERRIDE; |
| 129 virtual void Maximize() OVERRIDE; | 130 virtual void Maximize() OVERRIDE; |
| 130 virtual void Minimize() OVERRIDE; | 131 virtual void Minimize() OVERRIDE; |
| 131 virtual void Restore() OVERRIDE; | 132 virtual void Restore() OVERRIDE; |
| 132 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 133 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 133 virtual void FlashFrame(bool flash) OVERRIDE; | 134 virtual void FlashFrame(bool flash) OVERRIDE; |
| 134 virtual bool IsAlwaysOnTop() const OVERRIDE; | 135 virtual bool IsAlwaysOnTop() const OVERRIDE; |
| 135 | 136 |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 // Used for loading app_icon_. | 384 // Used for loading app_icon_. |
| 384 scoped_ptr<ImageLoadingTracker> app_icon_loader_; | 385 scoped_ptr<ImageLoadingTracker> app_icon_loader_; |
| 385 | 386 |
| 386 // Icon showed in the task bar. | 387 // Icon showed in the task bar. |
| 387 gfx::Image app_icon_; | 388 gfx::Image app_icon_; |
| 388 | 389 |
| 389 DISALLOW_COPY_AND_ASSIGN(Panel); | 390 DISALLOW_COPY_AND_ASSIGN(Panel); |
| 390 }; | 391 }; |
| 391 | 392 |
| 392 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 393 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
| OLD | NEW |