| Index: ios/chrome/browser/about_flags.mm
|
| diff --git a/ios/chrome/browser/about_flags.mm b/ios/chrome/browser/about_flags.mm
|
| index 66aadb42d6f5e25c5cd3262326bb7b2ad6d35de2..9f19234497a032698194b82d2a68c9a7c29c703d 100644
|
| --- a/ios/chrome/browser/about_flags.mm
|
| +++ b/ios/chrome/browser/about_flags.mm
|
| @@ -118,6 +118,15 @@ void AppendSwitchesFromExperimentalSettings(base::CommandLine* command_line) {
|
| command_line->AppendSwitch(switches::kDisableIOSPasswordGeneration);
|
| }
|
|
|
| + // Populate command line flags from PhysicalWebEnabled.
|
| + NSString* enablePhysicalWebValue =
|
| + [defaults stringForKey:@"PhysicalWebEnabled"];
|
| + if ([enablePhysicalWebValue isEqualToString:@"Enabled"]) {
|
| + command_line->AppendSwitch(switches::kEnableIOSPhysicalWeb);
|
| + } else if ([enablePhysicalWebValue isEqualToString:@"Disabled"]) {
|
| + command_line->AppendSwitch(switches::kDisableIOSPhysicalWeb);
|
| + }
|
| +
|
| // Web page replay flags.
|
| BOOL webPageReplayEnabled = [defaults boolForKey:@"WebPageReplayEnabled"];
|
| NSString* webPageReplayProxy =
|
|
|