| 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 cc10f5fcd6bd8759968941effe37dee293a9af84..6ff600bef5b6fa934f835b75161696e4c6833509 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) {
|
|
|