| 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 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1460 switches::kDisableNewAvatarMenu) | 1460 switches::kDisableNewAvatarMenu) |
| 1461 }, | 1461 }, |
| 1462 { | 1462 { |
| 1463 "enable-web-based-signin", | 1463 "enable-web-based-signin", |
| 1464 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, | 1464 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, |
| 1465 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, | 1465 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, |
| 1466 kOsMac | kOsWin | kOsLinux, | 1466 kOsMac | kOsWin | kOsLinux, |
| 1467 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) | 1467 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) |
| 1468 }, | 1468 }, |
| 1469 { | 1469 { |
| 1470 "enable-webview-based-signin", |
| 1471 IDS_FLAGS_ENABLE_WEBVIEW_BASED_SIGNIN_NAME, |
| 1472 IDS_FLAGS_ENABLE_WEBVIEW_BASED_SIGNIN_DESCRIPTION, |
| 1473 kOsMac | kOsWin | kOsLinux, |
| 1474 SINGLE_VALUE_TYPE(switches::kEnableWebviewBasedSignin) |
| 1475 }, |
| 1476 { |
| 1470 "enable-google-profile-info", | 1477 "enable-google-profile-info", |
| 1471 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, | 1478 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, |
| 1472 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, | 1479 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, |
| 1473 kOsMac | kOsWin | kOsLinux, | 1480 kOsMac | kOsWin | kOsLinux, |
| 1474 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) | 1481 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) |
| 1475 }, | 1482 }, |
| 1476 { | 1483 { |
| 1477 "reset-app-list-install-state", | 1484 "reset-app-list-install-state", |
| 1478 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, | 1485 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, |
| 1479 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, | 1486 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, |
| (...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2578 } | 2585 } |
| 2579 | 2586 |
| 2580 const Experiment* GetExperiments(size_t* count) { | 2587 const Experiment* GetExperiments(size_t* count) { |
| 2581 *count = num_experiments; | 2588 *count = num_experiments; |
| 2582 return experiments; | 2589 return experiments; |
| 2583 } | 2590 } |
| 2584 | 2591 |
| 2585 } // namespace testing | 2592 } // namespace testing |
| 2586 | 2593 |
| 2587 } // namespace about_flags | 2594 } // namespace about_flags |
| OLD | NEW |