| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 | 266 |
| 267 bool IsStartupCrashEnabled() { | 267 bool IsStartupCrashEnabled() { |
| 268 return [[NSUserDefaults standardUserDefaults] boolForKey:kEnableStartupCrash]; | 268 return [[NSUserDefaults standardUserDefaults] boolForKey:kEnableStartupCrash]; |
| 269 } | 269 } |
| 270 | 270 |
| 271 bool IsTabStripAutoScrollNewTabsEnabled() { | 271 bool IsTabStripAutoScrollNewTabsEnabled() { |
| 272 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | 272 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 273 return !command_line->HasSwitch(switches::kDisableTabStripAutoScrollNewTabs); | 273 return !command_line->HasSwitch(switches::kDisableTabStripAutoScrollNewTabs); |
| 274 } | 274 } |
| 275 | 275 |
| 276 bool IsTabSwitcherEnabled() { | |
| 277 // Check if the experimental flag is forced off. | |
| 278 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); | |
| 279 if (command_line->HasSwitch(switches::kDisableTabSwitcher)) { | |
| 280 return false; | |
| 281 } | |
| 282 | |
| 283 // Check if the finch experiment is turned off. | |
| 284 std::string group_name = base::FieldTrialList::FindFullName("IOSTabSwitcher"); | |
| 285 return !base::StartsWith(group_name, "Disabled", | |
| 286 base::CompareCase::INSENSITIVE_ASCII); | |
| 287 } | |
| 288 | |
| 289 bool IsViewCopyPasswordsEnabled() { | 276 bool IsViewCopyPasswordsEnabled() { |
| 290 NSString* viewCopyPasswordFlag = [[NSUserDefaults standardUserDefaults] | 277 NSString* viewCopyPasswordFlag = [[NSUserDefaults standardUserDefaults] |
| 291 objectForKey:kEnableViewCopyPasswords]; | 278 objectForKey:kEnableViewCopyPasswords]; |
| 292 if ([viewCopyPasswordFlag isEqualToString:@"Enabled"]) | 279 if ([viewCopyPasswordFlag isEqualToString:@"Enabled"]) |
| 293 return true; | 280 return true; |
| 294 return false; | 281 return false; |
| 295 } | 282 } |
| 296 | 283 |
| 297 bool UseOnlyLocalHeuristicsForPasswordGeneration() { | 284 bool UseOnlyLocalHeuristicsForPasswordGeneration() { |
| 298 if ([[NSUserDefaults standardUserDefaults] | 285 if ([[NSUserDefaults standardUserDefaults] |
| (...skipping 12 matching lines...) Expand all Loading... |
| 311 return true; | 298 return true; |
| 312 | 299 |
| 313 if (command_line->HasSwitch(switches::kDisableSuggestionsUI)) | 300 if (command_line->HasSwitch(switches::kDisableSuggestionsUI)) |
| 314 return false; | 301 return false; |
| 315 | 302 |
| 316 // By default, disable it. | 303 // By default, disable it. |
| 317 return false; | 304 return false; |
| 318 } | 305 } |
| 319 | 306 |
| 320 } // namespace experimental_flags | 307 } // namespace experimental_flags |
| OLD | NEW |