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

Unified Diff: ios/chrome/browser/about_flags.mm

Issue 2660143002: Removing iPad Tab Switcher experimental flag. (Closed)
Patch Set: Created 3 years, 11 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
Index: ios/chrome/browser/about_flags.mm
diff --git a/ios/chrome/browser/about_flags.mm b/ios/chrome/browser/about_flags.mm
index 1d52791bd505c9f909b149499d54b0cce3968b07..a3675dbced36366df69cb368afa5646072ab1b73 100644
--- a/ios/chrome/browser/about_flags.mm
+++ b/ios/chrome/browser/about_flags.mm
@@ -103,15 +103,6 @@ void AppendSwitchesFromExperimentalSettings(base::CommandLine* command_line) {
if ([defaults boolForKey:@"TabStripAutoScrollNewTabsDisabled"])
command_line->AppendSwitch(switches::kDisableTabStripAutoScrollNewTabs);
- // Populate command line flag for the Tab Switcher experiment from the
- // configuration plist.
- NSString* enableTabSwitcher = [defaults stringForKey:@"EnableTabSwitcher"];
- if ([enableTabSwitcher isEqualToString:@"Enabled"]) {
- command_line->AppendSwitch(switches::kEnableTabSwitcher);
- } else if ([enableTabSwitcher isEqualToString:@"Disabled"]) {
- command_line->AppendSwitch(switches::kDisableTabSwitcher);
- }
-
// Populate command line flag for the SnapshotLRUCache experiment from the
// configuration plist.
NSString* enableLRUSnapshotCache =

Powered by Google App Engine
This is Rietveld 408576698