| Index: ios/chrome/browser/ui/authentication/signin_interaction_controller.mm
|
| diff --git a/ios/chrome/browser/ui/authentication/signin_interaction_controller.mm b/ios/chrome/browser/ui/authentication/signin_interaction_controller.mm
|
| index 797f5683619bd5724b923652895aa450ada9a3e3..0f9905cac4bf2d2590dc7a6fef4653ae36c2ab11 100644
|
| --- a/ios/chrome/browser/ui/authentication/signin_interaction_controller.mm
|
| +++ b/ios/chrome/browser/ui/authentication/signin_interaction_controller.mm
|
| @@ -115,8 +115,8 @@ using signin_ui::CompletionCallback;
|
| [self showSigninViewControllerWithIdentity:nil identityAdded:NO];
|
| } else {
|
| identityInteractionManager_ =
|
| - identityService->NewChromeIdentityInteractionManager(browserState_,
|
| - self);
|
| + identityService->CreateChromeIdentityInteractionManager(browserState_,
|
| + self);
|
| if (!identityInteractionManager_) {
|
| // Abort sign-in if the ChromeIdentityInteractionManager returned is
|
| // nil (this can happen when the iOS internal provider is not used).
|
| @@ -162,7 +162,7 @@ using signin_ui::CompletionCallback;
|
| identityInteractionManager_ =
|
| ios::GetChromeBrowserProvider()
|
| ->GetChromeIdentityService()
|
| - ->NewChromeIdentityInteractionManager(browserState_, self);
|
| + ->CreateChromeIdentityInteractionManager(browserState_, self);
|
| __weak SigninInteractionController* weakSelf = self;
|
| [identityInteractionManager_
|
| reauthenticateUserWithID:base::SysUTF8ToNSString(idToReauthenticate)
|
| @@ -181,7 +181,7 @@ using signin_ui::CompletionCallback;
|
| identityInteractionManager_ =
|
| ios::GetChromeBrowserProvider()
|
| ->GetChromeIdentityService()
|
| - ->NewChromeIdentityInteractionManager(browserState_, self);
|
| + ->CreateChromeIdentityInteractionManager(browserState_, self);
|
| __weak SigninInteractionController* weakSelf = self;
|
| [identityInteractionManager_
|
| addAccountWithCompletion:^(ChromeIdentity* identity, NSError* error) {
|
|
|