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

Side by Side Diff: chrome/browser/ui/cocoa/profiles/profile_signin_confirmation_dialog_cocoa.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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_PROFILE_SIGNIN_CONFIRMATION_DIALOG_COCO A_ 5 #ifndef CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_DIALOG_COCO A_
6 #define CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_DIALOG_COCO A_ 6 #define CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_DIALOG_COCO A_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 28 matching lines...) Expand all
39 const std::string& username, 39 const std::string& username,
40 ui::ProfileSigninConfirmationDelegate* delegate, 40 ui::ProfileSigninConfirmationDelegate* delegate,
41 bool offer_profile_creation); 41 bool offer_profile_creation);
42 virtual ~ProfileSigninConfirmationDialogCocoa(); 42 virtual ~ProfileSigninConfirmationDialogCocoa();
43 43
44 // Closes the dialog, which deletes itself. 44 // Closes the dialog, which deletes itself.
45 void Close(); 45 void Close();
46 46
47 private: 47 private:
48 // ConstrainedWindowMacDelegate: 48 // ConstrainedWindowMacDelegate:
49 virtual void OnConstrainedWindowClosed(ConstrainedWindowMac* window) override; 49 void OnConstrainedWindowClosed(ConstrainedWindowMac* window) override;
50 50
51 // Controller for the dialog view. 51 // Controller for the dialog view.
52 base::scoped_nsobject<ProfileSigninConfirmationViewController> controller_; 52 base::scoped_nsobject<ProfileSigninConfirmationViewController> controller_;
53 53
54 // The constrained window that contains the dialog view. 54 // The constrained window that contains the dialog view.
55 scoped_ptr<ConstrainedWindowMac> window_; 55 scoped_ptr<ConstrainedWindowMac> window_;
56 56
57 DISALLOW_COPY_AND_ASSIGN(ProfileSigninConfirmationDialogCocoa); 57 DISALLOW_COPY_AND_ASSIGN(ProfileSigninConfirmationDialogCocoa);
58 }; 58 };
59 59
60 #endif // CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_DIALOG_C OCOA_ 60 #endif // CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_DIALOG_C OCOA_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698