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

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

Issue 374293003: Revert 281908 "Revert of Remove disable-app-list-voice-search fl..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 5 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 | « no previous file | trunk/src/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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1520 SINGLE_VALUE_TYPE(switches::kEnableAppView) 1520 SINGLE_VALUE_TYPE(switches::kEnableAppView)
1521 }, 1521 },
1522 { 1522 {
1523 "disable-app-list-app-info", 1523 "disable-app-list-app-info",
1524 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, 1524 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST,
1525 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, 1525 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION,
1526 kOsLinux | kOsWin | kOsCrOS, 1526 kOsLinux | kOsWin | kOsCrOS,
1527 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) 1527 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo)
1528 }, 1528 },
1529 { 1529 {
1530 "disable-app-list-voice-search",
1531 IDS_FLAGS_DISABLE_APP_LIST_VOICE_SEARCH,
1532 IDS_FLAGS_DISABLE_APP_LIST_VOICE_SEARCH_DESCRIPTION,
1533 kOsCrOS,
1534 SINGLE_VALUE_TYPE(app_list::switches::kDisableVoiceSearch)
1535 },
1536 {
1537 "enable-drive-apps-in-app-list", 1530 "enable-drive-apps-in-app-list",
1538 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_NAME, 1531 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_NAME,
1539 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION, 1532 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION,
1540 kOsDesktop, 1533 kOsDesktop,
1541 SINGLE_VALUE_TYPE(app_list::switches::kEnableDriveAppsInAppList) 1534 SINGLE_VALUE_TYPE(app_list::switches::kEnableDriveAppsInAppList)
1542 }, 1535 },
1543 #endif 1536 #endif
1544 #if defined(OS_ANDROID) 1537 #if defined(OS_ANDROID)
1545 { 1538 {
1546 "enable-accessibility-tab-switcher", 1539 "enable-accessibility-tab-switcher",
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
2496 } 2489 }
2497 2490
2498 const Experiment* GetExperiments(size_t* count) { 2491 const Experiment* GetExperiments(size_t* count) {
2499 *count = num_experiments; 2492 *count = num_experiments;
2500 return experiments; 2493 return experiments;
2501 } 2494 }
2502 2495
2503 } // namespace testing 2496 } // namespace testing
2504 2497
2505 } // namespace about_flags 2498 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | trunk/src/ui/app_list/app_list_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698