| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
| 6 | 6 |
| 7 #include <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1346 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_NAME, | 1346 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_NAME, |
| 1347 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_DESCRIPTION, | 1347 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_DESCRIPTION, |
| 1348 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, | 1348 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, |
| 1349 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAccountConsistency, | 1349 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAccountConsistency, |
| 1350 switches::kDisableAccountConsistency)}, | 1350 switches::kDisableAccountConsistency)}, |
| 1351 {"enable-iframe-based-signin", | 1351 {"enable-iframe-based-signin", |
| 1352 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME, | 1352 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME, |
| 1353 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION, | 1353 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION, |
| 1354 kOsMac | kOsWin | kOsLinux, | 1354 kOsMac | kOsWin | kOsLinux, |
| 1355 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)}, | 1355 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)}, |
| 1356 {"enable-password-separated-signin-flow", |
| 1357 IDS_FLAGS_ENABLE_PASSWORD_SEPARATED_SIGNIN_FLOW_NAME, |
| 1358 IDS_FLAGS_ENABLE_PASSWORD_SEPARATED_SIGNIN_FLOW_DESCRIPTION, |
| 1359 kOsWin | kOsLinux, |
| 1360 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePasswordSeparatedSigninFlow, |
| 1361 switches::kDisablePasswordSeparatedSigninFlow)}, |
| 1356 {"enable-google-profile-info", | 1362 {"enable-google-profile-info", |
| 1357 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, | 1363 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, |
| 1358 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, | 1364 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, |
| 1359 kOsMac | kOsWin | kOsLinux, | 1365 kOsMac | kOsWin | kOsLinux, |
| 1360 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, | 1366 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, |
| 1361 #if defined(ENABLE_APP_LIST) | 1367 #if defined(ENABLE_APP_LIST) |
| 1362 {"reset-app-list-install-state", | 1368 {"reset-app-list-install-state", |
| 1363 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, | 1369 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, |
| 1364 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, | 1370 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, |
| 1365 kOsMac | kOsWin | kOsLinux, | 1371 kOsMac | kOsWin | kOsLinux, |
| (...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2707 } | 2713 } |
| 2708 | 2714 |
| 2709 const Experiment* GetExperiments(size_t* count) { | 2715 const Experiment* GetExperiments(size_t* count) { |
| 2710 *count = num_experiments; | 2716 *count = num_experiments; |
| 2711 return experiments; | 2717 return experiments; |
| 2712 } | 2718 } |
| 2713 | 2719 |
| 2714 } // namespace testing | 2720 } // namespace testing |
| 2715 | 2721 |
| 2716 } // namespace about_flags | 2722 } // namespace about_flags |
| OLD | NEW |