| Index: ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm
|
| diff --git a/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm b/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm
|
| index ea44570f70575e2d5ec9a84327413b11c6472893..0e38ee80c06753d2dcde6b58960c602978278294 100644
|
| --- a/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm
|
| +++ b/ios/chrome/browser/ui/settings/accounts_collection_view_controller.mm
|
| @@ -447,7 +447,7 @@
|
| UINavigationController* settingsDetails =
|
| ios::GetChromeBrowserProvider()
|
| ->GetChromeIdentityService()
|
| - ->CreateWebAndAppSettingDetailsController(
|
| + ->NewWebAndAppSettingDetails(
|
| [self authService]->GetAuthenticatedIdentity(), self);
|
| UIImage* closeIcon = [ChromeIcon closeIcon];
|
| SEL action = @selector(closeGoogleActivitySettings:);
|
| @@ -509,10 +509,9 @@
|
| - (void)showAccountDetails:(ChromeIdentity*)identity {
|
| if ([_alertCoordinator isVisible])
|
| return;
|
| - UIViewController* accountDetails =
|
| - ios::GetChromeBrowserProvider()
|
| - ->GetChromeIdentityService()
|
| - ->CreateAccountDetailsController(identity, self);
|
| + UIViewController* accountDetails = ios::GetChromeBrowserProvider()
|
| + ->GetChromeIdentityService()
|
| + ->NewAccountDetails(identity, self);
|
| if (!accountDetails) {
|
| // Failed to create a new account details. Ignored.
|
| return;
|
|
|