| 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_VIEWS_ASH_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_ASH_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_ASH_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_ASH_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
| 7 | 7 |
| 8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/ui/search/search_types.h" | 10 #include "chrome/browser/ui/search/search_types.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 // views::NonClientFrameView overrides: | 44 // views::NonClientFrameView overrides: |
| 45 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; | 45 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; |
| 46 virtual gfx::Rect GetWindowBoundsForClientBounds( | 46 virtual gfx::Rect GetWindowBoundsForClientBounds( |
| 47 const gfx::Rect& client_bounds) const OVERRIDE; | 47 const gfx::Rect& client_bounds) const OVERRIDE; |
| 48 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 48 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
| 49 virtual void GetWindowMask(const gfx::Size& size, | 49 virtual void GetWindowMask(const gfx::Size& size, |
| 50 gfx::Path* window_mask) OVERRIDE; | 50 gfx::Path* window_mask) OVERRIDE; |
| 51 virtual void ResetWindowControls() OVERRIDE; | 51 virtual void ResetWindowControls() OVERRIDE; |
| 52 virtual void UpdateWindowIcon() OVERRIDE; | 52 virtual void UpdateWindowIcon() OVERRIDE; |
| 53 virtual void UpdateWindowTitle() OVERRIDE; |
| 53 | 54 |
| 54 // views::View overrides: | 55 // views::View overrides: |
| 55 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 56 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
| 56 virtual void Layout() OVERRIDE; | 57 virtual void Layout() OVERRIDE; |
| 57 virtual std::string GetClassName() const OVERRIDE; | 58 virtual std::string GetClassName() const OVERRIDE; |
| 58 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; | 59 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; |
| 59 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; | 60 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
| 60 virtual gfx::Size GetMinimumSize() OVERRIDE; | 61 virtual gfx::Size GetMinimumSize() OVERRIDE; |
| 61 | 62 |
| 62 // views::ButtonListener overrides: | 63 // views::ButtonListener overrides: |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 scoped_ptr<ash::FramePainter> frame_painter_; | 111 scoped_ptr<ash::FramePainter> frame_painter_; |
| 111 | 112 |
| 112 // If true the |size_button_| minimizes, otherwise it toggles between | 113 // If true the |size_button_| minimizes, otherwise it toggles between |
| 113 // maximized and restored. | 114 // maximized and restored. |
| 114 bool size_button_minimizes_; | 115 bool size_button_minimizes_; |
| 115 | 116 |
| 116 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh); | 117 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh); |
| 117 }; | 118 }; |
| 118 | 119 |
| 119 #endif // CHROME_BROWSER_UI_VIEWS_ASH_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 120 #endif // CHROME_BROWSER_UI_VIEWS_ASH_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
| OLD | NEW |