| 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> |
| 11 #import <Foundation/Foundation.h> | 11 #import <Foundation/Foundation.h> |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "base/command_line.h" | 15 #include "base/command_line.h" |
| 16 #include "base/metrics/field_trial.h" | 16 #include "base/metrics/field_trial.h" |
| 17 #include "base/strings/string_util.h" | 17 #include "base/strings/string_util.h" |
| 18 #include "base/strings/sys_string_conversions.h" | 18 #include "base/strings/sys_string_conversions.h" |
| 19 #include "components/autofill/core/common/autofill_switches.h" | 19 #include "components/autofill/core/common/autofill_switches.h" |
| 20 #include "components/signin/core/common/signin_switches.h" |
| 20 #include "components/variations/variations_associated_data.h" | 21 #include "components/variations/variations_associated_data.h" |
| 21 #include "ios/chrome/browser/chrome_switches.h" | 22 #include "ios/chrome/browser/chrome_switches.h" |
| 22 #include "ios/web/public/web_view_creation_util.h" | 23 #include "ios/web/public/web_view_creation_util.h" |
| 23 | 24 |
| 24 #if !defined(__has_feature) || !__has_feature(objc_arc) | 25 #if !defined(__has_feature) || !__has_feature(objc_arc) |
| 25 #error "This file requires ARC support." | 26 #error "This file requires ARC support." |
| 26 #endif | 27 #endif |
| 27 | 28 |
| 28 namespace { | 29 namespace { |
| 29 | 30 |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 if (command_line->HasSwitch(switches::kEnableSuggestionsUI)) | 257 if (command_line->HasSwitch(switches::kEnableSuggestionsUI)) |
| 257 return true; | 258 return true; |
| 258 | 259 |
| 259 if (command_line->HasSwitch(switches::kDisableSuggestionsUI)) | 260 if (command_line->HasSwitch(switches::kDisableSuggestionsUI)) |
| 260 return false; | 261 return false; |
| 261 | 262 |
| 262 // By default, disable it. | 263 // By default, disable it. |
| 263 return false; | 264 return false; |
| 264 } | 265 } |
| 265 | 266 |
| 267 bool IsSigninPromoEnabled() { |
| 268 // Check if the experimental flag is forced on or off. |
| 269 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
| 270 if (command_line->HasSwitch(switches::kEnableSigninPromo)) |
| 271 return true; |
| 272 if (command_line->HasSwitch(switches::kDisableSigninPromo)) |
| 273 return false; |
| 274 std::string group_name = base::FieldTrialList::FindFullName("IOSSigninPromo"); |
| 275 return base::StartsWith(group_name, "Enabled", |
| 276 base::CompareCase::INSENSITIVE_ASCII); |
| 277 } |
| 278 |
| 266 } // namespace experimental_flags | 279 } // namespace experimental_flags |
| OLD | NEW |