Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: ios/chrome/app/main_controller.mm

Issue 2899213002: Removed NativeAppsCollectionViewController and related code. (Closed)
Patch Set: removed StoreKit.framework Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ios/chrome/browser/ui/commands/ios_command_ids.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | ios/chrome/browser/ui/commands/ios_command_ids.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698