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 <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1682 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | 1682 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) |
1683 }, | 1683 }, |
1684 { | 1684 { |
1685 "enable-new-profile-management", | 1685 "enable-new-profile-management", |
1686 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, | 1686 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, |
1687 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, | 1687 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, |
1688 kOsMac | kOsWin | kOsLinux, | 1688 kOsMac | kOsWin | kOsLinux, |
1689 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) | 1689 SINGLE_VALUE_TYPE(switches::kNewProfileManagement) |
1690 }, | 1690 }, |
1691 { | 1691 { |
1692 "enable-inline-signin", | 1692 "enable-web-based-signin", |
1693 IDS_FLAGS_ENABLE_INLINE_SIGNIN_NAME, | 1693 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, |
1694 IDS_FLAGS_ENABLE_INLINE_SIGNIN_DESCRIPTION, | 1694 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, |
1695 kOsMac | kOsWin | kOsLinux, | 1695 kOsMac | kOsWin | kOsLinux, |
1696 SINGLE_VALUE_TYPE(switches::kEnableInlineSignin) | 1696 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) |
1697 }, | 1697 }, |
1698 { | 1698 { |
1699 "enable-google-profile-info", | 1699 "enable-google-profile-info", |
1700 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, | 1700 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, |
1701 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, | 1701 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, |
1702 kOsMac | kOsWin | kOsLinux, | 1702 kOsMac | kOsWin | kOsLinux, |
1703 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) | 1703 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) |
1704 }, | 1704 }, |
1705 { | 1705 { |
1706 "disable-app-launcher", | 1706 "disable-app-launcher", |
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2454 } | 2454 } |
2455 | 2455 |
2456 const Experiment* GetExperiments(size_t* count) { | 2456 const Experiment* GetExperiments(size_t* count) { |
2457 *count = num_experiments; | 2457 *count = num_experiments; |
2458 return experiments; | 2458 return experiments; |
2459 } | 2459 } |
2460 | 2460 |
2461 } // namespace testing | 2461 } // namespace testing |
2462 | 2462 |
2463 } // namespace about_flags | 2463 } // namespace about_flags |
OLD | NEW |