| Index: ios/chrome/browser/ui/authentication/chrome_signin_view_controller.mm
|
| diff --git a/ios/chrome/browser/ui/authentication/chrome_signin_view_controller.mm b/ios/chrome/browser/ui/authentication/chrome_signin_view_controller.mm
|
| index f83d98901f83212fb595569635c21631c50ed915..312c21e74d9000c9cfb64e9ccf3e96c595b0bae1 100644
|
| --- a/ios/chrome/browser/ui/authentication/chrome_signin_view_controller.mm
|
| +++ b/ios/chrome/browser/ui/authentication/chrome_signin_view_controller.mm
|
| @@ -358,10 +358,10 @@ void HideButton(UIButton* button) {
|
|
|
| - (void)openAuthenticationDialogAddIdentity {
|
| DCHECK(!_interactionManager);
|
| - _interactionManager =
|
| + _interactionManager.reset(
|
| ios::GetChromeBrowserProvider()
|
| ->GetChromeIdentityService()
|
| - ->NewChromeIdentityInteractionManager(_browserState, self);
|
| + ->CreateChromeIdentityInteractionManager(_browserState, self));
|
| base::WeakNSObject<ChromeSigninViewController> weakSelf(self);
|
| SigninCompletionCallback completion =
|
| ^(ChromeIdentity* identity, NSError* error) {
|
|
|