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 1438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1449 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, | 1449 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, |
1450 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, | 1450 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, |
1451 kOsMac | kOsWin | kOsLinux, | 1451 kOsMac | kOsWin | kOsLinux, |
1452 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) | 1452 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) |
1453 }, | 1453 }, |
1454 { | 1454 { |
1455 "enable-new-avatar-menu", | 1455 "enable-new-avatar-menu", |
1456 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME, | 1456 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME, |
1457 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION, | 1457 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION, |
1458 kOsMac | kOsWin | kOsLinux, | 1458 kOsMac | kOsWin | kOsLinux, |
1459 SINGLE_VALUE_TYPE(switches::kNewAvatarMenu) | 1459 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewAvatarMenu, |
| 1460 switches::kDisableNewAvatarMenu) |
1460 }, | 1461 }, |
1461 { | 1462 { |
1462 "enable-web-based-signin", | 1463 "enable-web-based-signin", |
1463 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, | 1464 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, |
1464 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, | 1465 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, |
1465 kOsMac | kOsWin | kOsLinux, | 1466 kOsMac | kOsWin | kOsLinux, |
1466 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) | 1467 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) |
1467 }, | 1468 }, |
1468 { | 1469 { |
1469 "enable-google-profile-info", | 1470 "enable-google-profile-info", |
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2437 } | 2438 } |
2438 | 2439 |
2439 const Experiment* GetExperiments(size_t* count) { | 2440 const Experiment* GetExperiments(size_t* count) { |
2440 *count = num_experiments; | 2441 *count = num_experiments; |
2441 return experiments; | 2442 return experiments; |
2442 } | 2443 } |
2443 | 2444 |
2444 } // namespace testing | 2445 } // namespace testing |
2445 | 2446 |
2446 } // namespace about_flags | 2447 } // namespace about_flags |
OLD | NEW |