Chromium Code Reviews| Index: chrome/browser/ui/cocoa/one_click_signin_view_controller.h |
| diff --git a/chrome/browser/ui/cocoa/one_click_signin_view_controller.h b/chrome/browser/ui/cocoa/one_click_signin_view_controller.h |
| index c3d2ae76279f84e6ac9675d2447563b4cf4ddc67..11b054235c2e82d27d0774de5cf98ab060152c9b 100644 |
| --- a/chrome/browser/ui/cocoa/one_click_signin_view_controller.h |
| +++ b/chrome/browser/ui/cocoa/one_click_signin_view_controller.h |
| @@ -25,6 +25,9 @@ class WebContents; |
| IBOutlet NSButton* advancedLink_; |
| IBOutlet NSButton* closeButton_; |
| + bool isSyncDialog_; |
| + NSString* errorMessage_; |
| + |
| // Text fields don't work as well with embedded links as text views, but |
| // text views cannot conveniently be created in IB. The xib file contains |
| // a text field |informativePlaceholderTextField_| that's replaced by this |
| @@ -38,7 +41,9 @@ class WebContents; |
| - (id)initWithNibName:(NSString*)nibName |
|
Alexei Svitkine (slow)
2013/04/19 19:54:15
Please document these params.
noms (inactive)
2013/04/22 15:28:07
Done.
|
| webContents:(content::WebContents*)webContents |
| syncCallback:(const BrowserWindow::StartSyncCallback&)syncCallback |
| - closeCallback:(const base::Closure&)callback; |
| + closeCallback:(const base::Closure&)callback |
| + isSyncDialog:(bool)isSyncDialog |
|
Alexei Svitkine (slow)
2013/04/19 19:54:15
Use the Obj-C type BOOL (with values YES/NO) rathe
noms (inactive)
2013/04/22 15:28:07
Done.
|
| + errorMessage:(const string16&)errorMessage; |
| // Called before the view is closed. |
| - (void)viewWillClose; |