| OLD | NEW |
| 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_VIEW_CONTRO
LLER_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_VIEW_CONTRO
LLER_ |
| 6 #define CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_VIEW_CONTRO
LLER_ | 6 #define CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_VIEW_CONTRO
LLER_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/mac/scoped_nsobject.h" | 12 #include "base/mac/scoped_nsobject.h" |
| 13 #include "chrome/browser/ui/cocoa/constrained_window/constrained_window_button.h
" | 13 #include "chrome/browser/ui/cocoa/constrained_window/constrained_window_button.h
" |
| 14 | 14 |
| 15 @class HyperlinkTextView; | 15 @class HyperlinkTextView; |
| 16 class Browser; | 16 class Browser; |
| 17 class Profile; | |
| 18 | 17 |
| 19 namespace ui { | 18 namespace ui { |
| 20 class ProfileSigninConfirmationDelegate; | 19 class ProfileSigninConfirmationDelegate; |
| 21 } | 20 } |
| 22 | 21 |
| 23 @interface ProfileSigninConfirmationViewController | 22 @interface ProfileSigninConfirmationViewController |
| 24 : NSViewController<NSTextViewDelegate> { | 23 : NSViewController<NSTextViewDelegate> { |
| 25 @private | 24 @private |
| 26 // The browser object for the sign-in tab. | 25 // The browser object for the sign-in tab. |
| 27 Browser* browser_; | 26 Browser* browser_; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 61 |
| 63 @interface ProfileSigninConfirmationViewController (TestingAPI) | 62 @interface ProfileSigninConfirmationViewController (TestingAPI) |
| 64 | 63 |
| 65 @property(readonly, nonatomic) ui::ProfileSigninConfirmationDelegate* delegate; | 64 @property(readonly, nonatomic) ui::ProfileSigninConfirmationDelegate* delegate; |
| 66 @property(readonly, nonatomic) NSButton* createProfileButton; | 65 @property(readonly, nonatomic) NSButton* createProfileButton; |
| 67 @property(readonly, nonatomic) NSTextView* explanationField; | 66 @property(readonly, nonatomic) NSTextView* explanationField; |
| 68 | 67 |
| 69 @end | 68 @end |
| 70 | 69 |
| 71 #endif // CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_VIEW_CON
TROLLER_ | 70 #endif // CHROME_BROWSER_UI_COCOA_PROFILES_PROFILE_SIGNIN_CONFIRMATION_VIEW_CON
TROLLER_ |
| OLD | NEW |