| Index: ios/chrome/browser/about_flags.mm
|
| diff --git a/ios/chrome/browser/about_flags.mm b/ios/chrome/browser/about_flags.mm
|
| index 9f19234497a032698194b82d2a68c9a7c29c703d..79a462836cbd95abbbf163d4add91629739254ec 100644
|
| --- a/ios/chrome/browser/about_flags.mm
|
| +++ b/ios/chrome/browser/about_flags.mm
|
| @@ -19,7 +19,6 @@
|
| #include "base/strings/stringprintf.h"
|
| #include "base/strings/sys_string_conversions.h"
|
| #include "base/sys_info.h"
|
| -#include "components/autofill/core/common/autofill_switches.h"
|
| #include "components/dom_distiller/core/dom_distiller_switches.h"
|
| #include "components/flags_ui/feature_entry.h"
|
| #include "components/flags_ui/feature_entry_macros.h"
|
| @@ -144,14 +143,6 @@ void AppendSwitchesFromExperimentalSettings(base::CommandLine* command_line) {
|
| if ([defaults boolForKey:@"EnableCredentialManagement"])
|
| command_line->AppendSwitch(switches::kEnableCredentialManagerAPI);
|
|
|
| - // Populate command line flags from FullFormAutofill.
|
| - NSString* fullFormAutofillValue = [defaults stringForKey:@"FullFormAutofill"];
|
| - if ([fullFormAutofillValue isEqualToString:@"Enabled"]) {
|
| - command_line->AppendSwitch(autofill::switches::kEnableFullFormAutofillIOS);
|
| - } else if ([fullFormAutofillValue isEqualToString:@"Disabled"]) {
|
| - command_line->AppendSwitch(autofill::switches::kDisableFullFormAutofillIOS);
|
| - }
|
| -
|
| NSString* autoReloadEnabledValue =
|
| [defaults stringForKey:@"AutoReloadEnabled"];
|
| if ([autoReloadEnabledValue isEqualToString:@"Enabled"]) {
|
|
|