| 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 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_NAME, | 1367 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_NAME, |
| 1368 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_DESCRIPTION, | 1368 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_DESCRIPTION, |
| 1369 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, | 1369 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, |
| 1370 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAccountConsistency, | 1370 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAccountConsistency, |
| 1371 switches::kDisableAccountConsistency)}, | 1371 switches::kDisableAccountConsistency)}, |
| 1372 {"enable-iframe-based-signin", | 1372 {"enable-iframe-based-signin", |
| 1373 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME, | 1373 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_NAME, |
| 1374 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION, | 1374 IDS_FLAGS_ENABLE_IFRAME_BASED_SIGNIN_DESCRIPTION, |
| 1375 kOsMac | kOsWin | kOsLinux, | 1375 kOsMac | kOsWin | kOsLinux, |
| 1376 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)}, | 1376 SINGLE_VALUE_TYPE(switches::kEnableIframeBasedSignin)}, |
| 1377 {"enable-password-separated-signin-flow", |
| 1378 IDS_FLAGS_ENABLE_PASSWORD_SEPARATED_SIGNIN_FLOW_NAME, |
| 1379 IDS_FLAGS_ENABLE_PASSWORD_SEPARATED_SIGNIN_FLOW_DESCRIPTION, |
| 1380 kOsWin | kOsLinux, |
| 1381 ENABLE_DISABLE_VALUE_TYPE(switches::kEnablePasswordSeparatedSigninFlow, |
| 1382 switches::kDisablePasswordSeparatedSigninFlow)}, |
| 1377 {"enable-google-profile-info", | 1383 {"enable-google-profile-info", |
| 1378 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, | 1384 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, |
| 1379 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, | 1385 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, |
| 1380 kOsMac | kOsWin | kOsLinux, | 1386 kOsMac | kOsWin | kOsLinux, |
| 1381 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, | 1387 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, |
| 1382 #if defined(ENABLE_APP_LIST) | 1388 #if defined(ENABLE_APP_LIST) |
| 1383 {"reset-app-list-install-state", | 1389 {"reset-app-list-install-state", |
| 1384 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, | 1390 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, |
| 1385 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, | 1391 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, |
| 1386 kOsMac | kOsWin | kOsLinux, | 1392 kOsMac | kOsWin | kOsLinux, |
| (...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2734 } | 2740 } |
| 2735 | 2741 |
| 2736 const Experiment* GetExperiments(size_t* count) { | 2742 const Experiment* GetExperiments(size_t* count) { |
| 2737 *count = num_experiments; | 2743 *count = num_experiments; |
| 2738 return experiments; | 2744 return experiments; |
| 2739 } | 2745 } |
| 2740 | 2746 |
| 2741 } // namespace testing | 2747 } // namespace testing |
| 2742 | 2748 |
| 2743 } // namespace about_flags | 2749 } // namespace about_flags |
| OLD | NEW |