| Index: ios/chrome/browser/about_flags.mm
|
| diff --git a/ios/chrome/browser/about_flags.mm b/ios/chrome/browser/about_flags.mm
|
| index 3092b481c9ff676268ee3b7058734e0cfd1e2d01..74c51763fd453aa56ff1492a407c965cd903ee8c 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 =
|
|
|