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 <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 Loading... |
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 Loading... |
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 |
OLD | NEW |