| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file can be empty. Its purpose is to contain the relatively short lived | 5 // This file can be empty. Its purpose is to contain the relatively short lived |
| 6 // definitions required for experimental flags. | 6 // definitions required for experimental flags. |
| 7 | 7 |
| 8 #include "ios/chrome/browser/experimental_flags.h" | 8 #include "ios/chrome/browser/experimental_flags.h" |
| 9 | 9 |
| 10 #include <dispatch/dispatch.h> | 10 #include <dispatch/dispatch.h> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 if ([[NSUserDefaults standardUserDefaults] | 80 if ([[NSUserDefaults standardUserDefaults] |
| 81 boolForKey:kHeuristicsForPasswordGeneration]) { | 81 boolForKey:kHeuristicsForPasswordGeneration]) { |
| 82 return true; | 82 return true; |
| 83 } | 83 } |
| 84 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 84 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 85 return command_line->HasSwitch( | 85 return command_line->HasSwitch( |
| 86 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration); | 86 autofill::switches::kLocalHeuristicsOnlyForPasswordGeneration); |
| 87 } | 87 } |
| 88 | 88 |
| 89 bool IsTabSwitcherEnabled() { | 89 bool IsTabSwitcherEnabled() { |
| 90 // Check if the experimental flag is forced on or off. | 90 // Check if the experimental flag is forced off. |
| 91 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 91 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 92 if (command_line->HasSwitch(switches::kEnableTabSwitcher)) { | 92 if (command_line->HasSwitch(switches::kDisableTabSwitcher)) { |
| 93 return true; | |
| 94 } else if (command_line->HasSwitch(switches::kDisableTabSwitcher)) { | |
| 95 return false; | 93 return false; |
| 96 } | 94 } |
| 97 | 95 |
| 98 // Check if the finch experiment is turned on. | 96 // Check if the finch experiment is turned off. |
| 99 std::string group_name = base::FieldTrialList::FindFullName("IOSTabSwitcher"); | 97 std::string group_name = base::FieldTrialList::FindFullName("IOSTabSwitcher"); |
| 100 return base::StartsWith(group_name, "Enabled", | 98 return !base::StartsWith(group_name, "Disabled", |
| 101 base::CompareCase::INSENSITIVE_ASCII); | 99 base::CompareCase::INSENSITIVE_ASCII); |
| 102 } | 100 } |
| 103 | 101 |
| 104 bool IsReadingListEnabled() { | 102 bool IsReadingListEnabled() { |
| 105 return [[NSUserDefaults standardUserDefaults] boolForKey:kEnableReadingList]; | 103 return [[NSUserDefaults standardUserDefaults] boolForKey:kEnableReadingList]; |
| 106 } | 104 } |
| 107 | 105 |
| 108 bool IsAllBookmarksEnabled() { | 106 bool IsAllBookmarksEnabled() { |
| 109 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 107 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 110 if (command_line->HasSwitch(switches::kEnableAllBookmarksView)) { | 108 if (command_line->HasSwitch(switches::kEnableAllBookmarksView)) { |
| 111 return true; | 109 return true; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 178 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 181 return !command_line->HasSwitch(switches::kDisableSpotlightActions); | 179 return !command_line->HasSwitch(switches::kDisableSpotlightActions); |
| 182 } | 180 } |
| 183 | 181 |
| 184 bool IsMDMIntegrationEnabled() { | 182 bool IsMDMIntegrationEnabled() { |
| 185 return ![[NSUserDefaults standardUserDefaults] | 183 return ![[NSUserDefaults standardUserDefaults] |
| 186 boolForKey:kMDMIntegrationDisabled]; | 184 boolForKey:kMDMIntegrationDisabled]; |
| 187 } | 185 } |
| 188 | 186 |
| 189 } // namespace experimental_flags | 187 } // namespace experimental_flags |
| OLD | NEW |