| Index: chrome/browser/ui/cocoa/profiles/user_manager_mac.mm
|
| diff --git a/chrome/browser/ui/cocoa/profiles/user_manager_mac.mm b/chrome/browser/ui/cocoa/profiles/user_manager_mac.mm
|
| index 0b989afe111fffc9c86871b79e96ffde765a3992..3a34663b15e1c9b00cebcb53b63c959d42c25f08 100644
|
| --- a/chrome/browser/ui/cocoa/profiles/user_manager_mac.mm
|
| +++ b/chrome/browser/ui/cocoa/profiles/user_manager_mac.mm
|
| @@ -365,17 +365,15 @@
|
| }
|
|
|
| - (void)showReauthDialogWithProfile:(Profile*)profile email:(std::string)email {
|
| - if (!reauth_window_controller_) {
|
| - reauth_window_controller_.reset(
|
| - [[ReauthDialogWindowController alloc]
|
| - initWithProfile:profile
|
| - email:email
|
| - webContents:webContents_.get()]);
|
| - }
|
| + reauth_window_controller_.reset(
|
| + [[ReauthDialogWindowController alloc]
|
| + initWithProfile:profile
|
| + email:email
|
| + webContents:webContents_.get()]);
|
| }
|
|
|
| - (void)closeReauthDialog {
|
| - reauth_window_controller_.reset();
|
| + [reauth_window_controller_ close];
|
| }
|
|
|
| @end
|
|
|