| 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> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 9 #include "base/macros.h" | |
| 10 #include "base/memory/scoped_ptr.h" | |
| 11 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" | 12 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" |
| 12 #include "chrome/browser/ui/views/tab_icon_view_model.h" | 13 #include "chrome/browser/ui/views/tab_icon_view_model.h" |
| 13 #include "chrome/browser/ui/views/tabs/tab_strip_observer.h" | 14 #include "chrome/browser/ui/views/tabs/tab_strip_observer.h" |
| 14 | 15 |
| 15 #if !defined(OS_CHROMEOS) | 16 #if !defined(OS_CHROMEOS) |
| 16 #include "chrome/browser/ui/views/frame/avatar_button_manager.h" | 17 #include "chrome/browser/ui/views/frame/avatar_button_manager.h" |
| 17 #endif | 18 #endif |
| 18 | 19 |
| 19 class TabIconView; | 20 class TabIconView; |
| 20 class WebAppLeftHeaderView; | 21 class WebAppLeftHeaderView; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 // Wrapper around the in-frame avatar switcher. | 141 // Wrapper around the in-frame avatar switcher. |
| 141 AvatarButtonManager profile_switcher_; | 142 AvatarButtonManager profile_switcher_; |
| 142 #endif | 143 #endif |
| 143 | 144 |
| 144 TabStrip* tab_strip_; | 145 TabStrip* tab_strip_; |
| 145 | 146 |
| 146 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewMus); | 147 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewMus); |
| 147 }; | 148 }; |
| 148 | 149 |
| 149 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MUS_H_ | 150 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_MUS_H_ |
| OLD | NEW |