Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 218993008: Manual revert of r245345 in branch 1847 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1847/src/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/app_list/app_list_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | ui/app_list/app_list_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698