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 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1751 }, | 1751 }, |
1752 #endif | 1752 #endif |
1753 { | 1753 { |
1754 "enable-app-list-folder", | 1754 "enable-app-list-folder", |
1755 IDS_FLAGS_ENABLE_APP_LIST_FOLDER, | 1755 IDS_FLAGS_ENABLE_APP_LIST_FOLDER, |
1756 IDS_FLAGS_ENABLE_APP_LIST_FOLDER_DESCRIPTION, | 1756 IDS_FLAGS_ENABLE_APP_LIST_FOLDER_DESCRIPTION, |
1757 kOsWin | kOsLinux | kOsCrOS, | 1757 kOsWin | kOsLinux | kOsCrOS, |
1758 SINGLE_VALUE_TYPE(app_list::switches::kEnableFolderUI) | 1758 SINGLE_VALUE_TYPE(app_list::switches::kEnableFolderUI) |
1759 }, | 1759 }, |
1760 { | 1760 { |
1761 "disable-app-list-voice-search", | 1761 "enable-app-list-voice-search", |
1762 IDS_FLAGS_DISABLE_APP_LIST_VOICE_SEARCH, | 1762 IDS_FLAGS_ENABLE_APP_LIST_VOICE_SEARCH, |
1763 IDS_FLAGS_DISABLE_APP_LIST_VOICE_SEARCH_DESCRIPTION, | 1763 IDS_FLAGS_ENABLE_APP_LIST_VOICE_SEARCH_DESCRIPTION, |
1764 kOsCrOS, | 1764 kOsCrOS, |
1765 SINGLE_VALUE_TYPE(app_list::switches::kDisableVoiceSearch) | 1765 SINGLE_VALUE_TYPE(app_list::switches::kEnableVoiceSearch) |
1766 }, | 1766 }, |
1767 { | 1767 { |
1768 "enable-app-list-app-info", | 1768 "enable-app-list-app-info", |
1769 IDS_FLAGS_ENABLE_APP_INFO_IN_APP_LIST, | 1769 IDS_FLAGS_ENABLE_APP_INFO_IN_APP_LIST, |
1770 IDS_FLAGS_ENABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, | 1770 IDS_FLAGS_ENABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, |
1771 kOsLinux | kOsWin | kOsCrOS, | 1771 kOsLinux | kOsWin | kOsCrOS, |
1772 SINGLE_VALUE_TYPE(app_list::switches::kEnableAppInfo) | 1772 SINGLE_VALUE_TYPE(app_list::switches::kEnableAppInfo) |
1773 }, | 1773 }, |
1774 #endif | 1774 #endif |
1775 #if defined(OS_CHROMEOS) | 1775 #if defined(OS_CHROMEOS) |
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2536 } | 2536 } |
2537 | 2537 |
2538 const Experiment* GetExperiments(size_t* count) { | 2538 const Experiment* GetExperiments(size_t* count) { |
2539 *count = num_experiments; | 2539 *count = num_experiments; |
2540 return experiments; | 2540 return experiments; |
2541 } | 2541 } |
2542 | 2542 |
2543 } // namespace testing | 2543 } // namespace testing |
2544 | 2544 |
2545 } // namespace about_flags | 2545 } // namespace about_flags |
OLD | NEW |