| 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 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1476 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, | 1476 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, |
| 1477 kOsLinux, | 1477 kOsLinux, |
| 1478 SINGLE_VALUE_TYPE(switches::kEnableAppList) | 1478 SINGLE_VALUE_TYPE(switches::kEnableAppList) |
| 1479 }, | 1479 }, |
| 1480 #endif | 1480 #endif |
| 1481 { | 1481 { |
| 1482 "enable-app-view", | 1482 "enable-app-view", |
| 1483 IDS_FLAGS_ENABLE_APP_VIEW_NAME, | 1483 IDS_FLAGS_ENABLE_APP_VIEW_NAME, |
| 1484 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, | 1484 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, |
| 1485 kOsAll, | 1485 kOsAll, |
| 1486 SINGLE_VALUE_TYPE(switches::kEnableAppView) | 1486 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppView) |
| 1487 }, | 1487 }, |
| 1488 { | 1488 { |
| 1489 "disable-app-list-app-info", | 1489 "disable-app-list-app-info", |
| 1490 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, | 1490 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, |
| 1491 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, | 1491 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, |
| 1492 kOsLinux | kOsWin | kOsCrOS, | 1492 kOsLinux | kOsWin | kOsCrOS, |
| 1493 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) | 1493 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) |
| 1494 }, | 1494 }, |
| 1495 { | 1495 { |
| 1496 "enable-drive-apps-in-app-list", | 1496 "enable-drive-apps-in-app-list", |
| (...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2486 } | 2486 } |
| 2487 | 2487 |
| 2488 const Experiment* GetExperiments(size_t* count) { | 2488 const Experiment* GetExperiments(size_t* count) { |
| 2489 *count = num_experiments; | 2489 *count = num_experiments; |
| 2490 return experiments; | 2490 return experiments; |
| 2491 } | 2491 } |
| 2492 | 2492 |
| 2493 } // namespace testing | 2493 } // namespace testing |
| 2494 | 2494 |
| 2495 } // namespace about_flags | 2495 } // namespace about_flags |
| OLD | NEW |