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

Side by Side Diff: chrome/browser/ui/cocoa/profiles/user_manager_mac.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_COCOA_PROFILES_USER_MANAGER_MAC_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_PROFILES_USER_MANAGER_MAC_H_
6 #define CHROME_BROWSER_UI_COCOA_PROFILES_USER_MANAGER_MAC_H_ 6 #define CHROME_BROWSER_UI_COCOA_PROFILES_USER_MANAGER_MAC_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include <memory>
11
10 #include "base/mac/scoped_nsobject.h" 12 #include "base/mac/scoped_nsobject.h"
11 #include "base/macros.h" 13 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/browser/profiles/profile.h" 14 #include "chrome/browser/profiles/profile.h"
14 #include "chrome/browser/profiles/profile_window.h" 15 #include "chrome/browser/profiles/profile_window.h"
15 16
16 @class ReauthDialogWindowController; 17 @class ReauthDialogWindowController;
17 @class UserManagerWindowController; 18 @class UserManagerWindowController;
18 19
19 namespace content { 20 namespace content {
20 class NavigationController; 21 class NavigationController;
21 class WebContents; 22 class WebContents;
22 } 23 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 base::scoped_nsobject<UserManagerWindowController> window_controller_; 60 base::scoped_nsobject<UserManagerWindowController> window_controller_;
60 61
61 base::scoped_nsobject<ReauthDialogWindowController> reauth_window_; 62 base::scoped_nsobject<ReauthDialogWindowController> reauth_window_;
62 63
63 base::Time user_manager_started_showing_; 64 base::Time user_manager_started_showing_;
64 65
65 DISALLOW_COPY_AND_ASSIGN(UserManagerMac); 66 DISALLOW_COPY_AND_ASSIGN(UserManagerMac);
66 }; 67 };
67 68
68 #endif // CHROME_BROWSER_UI_COCOA_PROFILES_USER_MANAGER_MAC_H_ 69 #endif // CHROME_BROWSER_UI_COCOA_PROFILES_USER_MANAGER_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698