| 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_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/common/shell_observer.h" | 10 #include "ash/common/shell_observer.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) override; | 52 void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) override; |
| 53 void ResetWindowControls() override; | 53 void ResetWindowControls() override; |
| 54 void UpdateWindowIcon() override; | 54 void UpdateWindowIcon() override; |
| 55 void UpdateWindowTitle() override; | 55 void UpdateWindowTitle() override; |
| 56 void SizeConstraintsChanged() override; | 56 void SizeConstraintsChanged() override; |
| 57 | 57 |
| 58 // views::View: | 58 // views::View: |
| 59 void OnPaint(gfx::Canvas* canvas) override; | 59 void OnPaint(gfx::Canvas* canvas) override; |
| 60 void Layout() override; | 60 void Layout() override; |
| 61 const char* GetClassName() const override; | 61 const char* GetClassName() const override; |
| 62 void GetAccessibleState(ui::AXViewState* state) override; | 62 void GetAccessibleNodeData(ui::AXNodeData* node_data) override; |
| 63 gfx::Size GetMinimumSize() const override; | 63 gfx::Size GetMinimumSize() const override; |
| 64 void ChildPreferredSizeChanged(views::View* child) override; | 64 void ChildPreferredSizeChanged(views::View* child) override; |
| 65 | 65 |
| 66 // ash::ShellObserver: | 66 // ash::ShellObserver: |
| 67 void OnOverviewModeStarting() override; | 67 void OnOverviewModeStarting() override; |
| 68 void OnOverviewModeEnded() override; | 68 void OnOverviewModeEnded() override; |
| 69 void OnMaximizeModeStarted() override; | 69 void OnMaximizeModeStarted() override; |
| 70 void OnMaximizeModeEnded() override; | 70 void OnMaximizeModeEnded() override; |
| 71 | 71 |
| 72 // TabIconViewModel: | 72 // TabIconViewModel: |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // For popups, the window icon. | 131 // For popups, the window icon. |
| 132 TabIconView* window_icon_; | 132 TabIconView* window_icon_; |
| 133 | 133 |
| 134 // Helper class for painting the header. | 134 // Helper class for painting the header. |
| 135 std::unique_ptr<ash::HeaderPainter> header_painter_; | 135 std::unique_ptr<ash::HeaderPainter> header_painter_; |
| 136 | 136 |
| 137 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh); | 137 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAsh); |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ | 140 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_ASH_H_ |
| OLD | NEW |