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 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1514 }, | 1514 }, |
1515 #endif | 1515 #endif |
1516 { | 1516 { |
1517 "disable-app-list-app-info", | 1517 "disable-app-list-app-info", |
1518 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, | 1518 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, |
1519 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, | 1519 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, |
1520 kOsLinux | kOsWin | kOsCrOS, | 1520 kOsLinux | kOsWin | kOsCrOS, |
1521 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) | 1521 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) |
1522 }, | 1522 }, |
1523 { | 1523 { |
1524 "disable-app-list-voice-search", | |
1525 IDS_FLAGS_DISABLE_APP_LIST_VOICE_SEARCH, | |
1526 IDS_FLAGS_DISABLE_APP_LIST_VOICE_SEARCH_DESCRIPTION, | |
1527 kOsCrOS, | |
1528 SINGLE_VALUE_TYPE(app_list::switches::kDisableVoiceSearch) | |
1529 }, | |
1530 { | |
1531 "enable-drive-apps-in-app-list", | 1524 "enable-drive-apps-in-app-list", |
1532 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_NAME, | 1525 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_NAME, |
1533 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION, | 1526 IDS_FLAGS_ENABLE_DRIVE_APPS_IN_APP_LIST_DESCRIPTION, |
1534 kOsDesktop, | 1527 kOsDesktop, |
1535 SINGLE_VALUE_TYPE(app_list::switches::kEnableDriveAppsInAppList) | 1528 SINGLE_VALUE_TYPE(app_list::switches::kEnableDriveAppsInAppList) |
1536 }, | 1529 }, |
1537 #endif | 1530 #endif |
1538 #if defined(OS_ANDROID) | 1531 #if defined(OS_ANDROID) |
1539 { | 1532 { |
1540 "enable-accessibility-tab-switcher", | 1533 "enable-accessibility-tab-switcher", |
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2474 } | 2467 } |
2475 | 2468 |
2476 const Experiment* GetExperiments(size_t* count) { | 2469 const Experiment* GetExperiments(size_t* count) { |
2477 *count = num_experiments; | 2470 *count = num_experiments; |
2478 return experiments; | 2471 return experiments; |
2479 } | 2472 } |
2480 | 2473 |
2481 } // namespace testing | 2474 } // namespace testing |
2482 | 2475 |
2483 } // namespace about_flags | 2476 } // namespace about_flags |
OLD | NEW |