| Index: ios/chrome/browser/experimental_flags.mm
|
| diff --git a/ios/chrome/browser/experimental_flags.mm b/ios/chrome/browser/experimental_flags.mm
|
| index 892a61629f70af296513627b6cbc7593e8bdf69f..8f83865f21b355016b2c6f9356ceed35c4c00027 100644
|
| --- a/ios/chrome/browser/experimental_flags.mm
|
| +++ b/ios/chrome/browser/experimental_flags.mm
|
| @@ -85,6 +85,25 @@
|
| boolForKey:kEnableAlertOnBackgroundUpload];
|
| }
|
|
|
| +bool IsAllBookmarksEnabled() {
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| + if (command_line->HasSwitch(switches::kEnableAllBookmarksView)) {
|
| + return true;
|
| + } else if (command_line->HasSwitch(switches::kDisableAllBookmarksView)) {
|
| + return false;
|
| + }
|
| +
|
| + // Check if the finch experiment exists.
|
| + std::string group_name =
|
| + base::FieldTrialList::FindFullName("RemoveAllBookmarks");
|
| +
|
| + if (group_name.empty()) {
|
| + return false; // If no finch experiment, all bookmarks is disabled.
|
| + }
|
| + return base::StartsWith(group_name, "Enabled",
|
| + base::CompareCase::INSENSITIVE_ASCII);
|
| +}
|
| +
|
| bool IsAutoReloadEnabled() {
|
| std::string group_name = base::FieldTrialList::FindFullName("IOSAutoReload");
|
| base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
|
|