| 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 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1435 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, | 1435 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, |
| 1436 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, | 1436 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, |
| 1437 kOsMac | kOsWin | kOsLinux, | 1437 kOsMac | kOsWin | kOsLinux, |
| 1438 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) | 1438 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) |
| 1439 }, | 1439 }, |
| 1440 { | 1440 { |
| 1441 "enable-new-avatar-menu", | 1441 "enable-new-avatar-menu", |
| 1442 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME, | 1442 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME, |
| 1443 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION, | 1443 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION, |
| 1444 kOsMac | kOsWin | kOsLinux, | 1444 kOsMac | kOsWin | kOsLinux, |
| 1445 SINGLE_VALUE_TYPE(switches::kNewAvatarMenu) | 1445 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewAvatarMenu, |
| 1446 switches::kDisableNewAvatarMenu) |
| 1446 }, | 1447 }, |
| 1447 { | 1448 { |
| 1448 "enable-web-based-signin", | 1449 "enable-web-based-signin", |
| 1449 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, | 1450 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, |
| 1450 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, | 1451 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, |
| 1451 kOsMac | kOsWin | kOsLinux, | 1452 kOsMac | kOsWin | kOsLinux, |
| 1452 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) | 1453 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) |
| 1453 }, | 1454 }, |
| 1454 { | 1455 { |
| 1455 "enable-google-profile-info", | 1456 "enable-google-profile-info", |
| (...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2423 } | 2424 } |
| 2424 | 2425 |
| 2425 const Experiment* GetExperiments(size_t* count) { | 2426 const Experiment* GetExperiments(size_t* count) { |
| 2426 *count = num_experiments; | 2427 *count = num_experiments; |
| 2427 return experiments; | 2428 return experiments; |
| 2428 } | 2429 } |
| 2429 | 2430 |
| 2430 } // namespace testing | 2431 } // namespace testing |
| 2431 | 2432 |
| 2432 } // namespace about_flags | 2433 } // namespace about_flags |
| OLD | NEW |