Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/browser/ui/views/frame/browser_non_client_frame_view_mus.h

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698