| 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 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1703 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) | 1703 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) |
| 1704 }, | 1704 }, |
| 1705 { | 1705 { |
| 1706 "enable-google-profile-info", | 1706 "enable-google-profile-info", |
| 1707 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, | 1707 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_NAME, |
| 1708 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, | 1708 IDS_FLAGS_ENABLE_GOOGLE_PROFILE_INFO_DESCRIPTION, |
| 1709 kOsMac | kOsWin | kOsLinux, | 1709 kOsMac | kOsWin | kOsLinux, |
| 1710 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) | 1710 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo) |
| 1711 }, | 1711 }, |
| 1712 { | 1712 { |
| 1713 "disable-app-launcher", | 1713 "reset-app-list-install-state", |
| 1714 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, | 1714 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, |
| 1715 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, | 1715 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, |
| 1716 kOsMac | kOsWin, | 1716 kOsMac | kOsWin, |
| 1717 SINGLE_VALUE_TYPE(switches::kResetAppListInstallState) | 1717 SINGLE_VALUE_TYPE(switches::kResetAppListInstallState) |
| 1718 }, | 1718 }, |
| 1719 #if defined(ENABLE_APP_LIST) | 1719 #if defined(ENABLE_APP_LIST) |
| 1720 { | 1720 { |
| 1721 "enable-app-launcher-start-page", | 1721 "enable-app-launcher-start-page", |
| 1722 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_NAME, | 1722 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_NAME, |
| 1723 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_DESCRIPTION, | 1723 IDS_FLAGS_ENABLE_APP_LIST_START_PAGE_DESCRIPTION, |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2462 } | 2462 } |
| 2463 | 2463 |
| 2464 const Experiment* GetExperiments(size_t* count) { | 2464 const Experiment* GetExperiments(size_t* count) { |
| 2465 *count = num_experiments; | 2465 *count = num_experiments; |
| 2466 return experiments; | 2466 return experiments; |
| 2467 } | 2467 } |
| 2468 | 2468 |
| 2469 } // namespace testing | 2469 } // namespace testing |
| 2470 | 2470 |
| 2471 } // namespace about_flags | 2471 } // namespace about_flags |
| OLD | NEW |