| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_MUS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MUS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MUS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MUS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) override; | 58 void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) override; |
| 59 void ResetWindowControls() override; | 59 void ResetWindowControls() override; |
| 60 void UpdateWindowIcon() override; | 60 void UpdateWindowIcon() override; |
| 61 void UpdateWindowTitle() override; | 61 void UpdateWindowTitle() override; |
| 62 void SizeConstraintsChanged() override; | 62 void SizeConstraintsChanged() override; |
| 63 | 63 |
| 64 // views::View: | 64 // views::View: |
| 65 void OnPaint(gfx::Canvas* canvas) override; | 65 void OnPaint(gfx::Canvas* canvas) override; |
| 66 void Layout() override; | 66 void Layout() override; |
| 67 const char* GetClassName() const override; | 67 const char* GetClassName() const override; |
| 68 void GetAccessibleState(ui::AXViewState* state) override; | 68 void GetAccessibleNodeData(ui::AXNodeData* node_data) override; |
| 69 gfx::Size GetMinimumSize() const override; | 69 gfx::Size GetMinimumSize() const override; |
| 70 | 70 |
| 71 // TabIconViewModel: | 71 // TabIconViewModel: |
| 72 bool ShouldTabIconViewAnimate() const override; | 72 bool ShouldTabIconViewAnimate() const override; |
| 73 gfx::ImageSkia GetFaviconForTabIconView() override; | 73 gfx::ImageSkia GetFaviconForTabIconView() override; |
| 74 | 74 |
| 75 protected: | 75 protected: |
| 76 // BrowserNonClientFrameView: | 76 // BrowserNonClientFrameView: |
| 77 void UpdateProfileIcons() override; | 77 void UpdateProfileIcons() override; |
| 78 | 78 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 // Wrapper around the in-frame avatar switcher. | 137 // Wrapper around the in-frame avatar switcher. |
| 138 AvatarButtonManager profile_switcher_; | 138 AvatarButtonManager profile_switcher_; |
| 139 #endif | 139 #endif |
| 140 | 140 |
| 141 TabStrip* tab_strip_; | 141 TabStrip* tab_strip_; |
| 142 | 142 |
| 143 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewMus); | 143 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewMus); |
| 144 }; | 144 }; |
| 145 | 145 |
| 146 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MUS_H_ | 146 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MUS_H_ |
| OLD | NEW |