| Index: ios/chrome/app/main_controller.mm
|
| diff --git a/ios/chrome/app/main_controller.mm b/ios/chrome/app/main_controller.mm
|
| index 4d9cae320e81fb64a70980cfe02f23df546ff89d..0fc907589f3959daf5e263abcfed7c85ea5fdd86 100644
|
| --- a/ios/chrome/app/main_controller.mm
|
| +++ b/ios/chrome/app/main_controller.mm
|
| @@ -382,8 +382,6 @@ enum class StackViewDismissalMode { NONE, NORMAL, INCOGNITO };
|
| (ProceduralBlock)callback;
|
| // Shows the Sync encryption passphrase (part of Settings).
|
| - (void)showSyncEncryptionPassphrase;
|
| -// Shows the Native Apps Settings UI (part of Settings).
|
| -- (void)showNativeAppsSettings;
|
| // Shows the Clear Browsing Data Settings UI (part of Settings).
|
| - (void)showClearBrowsingDataSettingsController;
|
| // Shows the Contextual search UI (part of Settings).
|
| @@ -1471,9 +1469,6 @@ enum class StackViewDismissalMode { NONE, NORMAL, INCOGNITO };
|
| case IDC_RESET_ALL_WEBVIEWS:
|
| [self.currentBVC resetAllWebViews];
|
| break;
|
| - case IDC_SHOW_GOOGLE_APPS_SETTINGS:
|
| - [self showNativeAppsSettings];
|
| - break;
|
| case IDC_SHOW_CLEAR_BROWSING_DATA_SETTINGS:
|
| [self showClearBrowsingDataSettingsController];
|
| break;
|
| @@ -2143,18 +2138,6 @@ enum class StackViewDismissalMode { NONE, NORMAL, INCOGNITO };
|
| } copy];
|
| }
|
|
|
| -- (void)showNativeAppsSettings {
|
| - if (_settingsNavigationController)
|
| - return;
|
| - _settingsNavigationController =
|
| - [SettingsNavigationController newNativeAppsController:_mainBrowserState
|
| - delegate:self];
|
| - [[self topPresentedViewController]
|
| - presentViewController:_settingsNavigationController
|
| - animated:YES
|
| - completion:nil];
|
| -}
|
| -
|
| - (void)closeSettingsAnimated:(BOOL)animated
|
| completion:(ProceduralBlock)completion {
|
| DCHECK(_settingsNavigationController);
|
|
|