| 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 1488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1499 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, | 1499 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, |
| 1500 kOsLinux, | 1500 kOsLinux, |
| 1501 SINGLE_VALUE_TYPE(switches::kEnableAppList) | 1501 SINGLE_VALUE_TYPE(switches::kEnableAppList) |
| 1502 }, | 1502 }, |
| 1503 #endif | 1503 #endif |
| 1504 { | 1504 { |
| 1505 "enable-app-view", | 1505 "enable-app-view", |
| 1506 IDS_FLAGS_ENABLE_APP_VIEW_NAME, | 1506 IDS_FLAGS_ENABLE_APP_VIEW_NAME, |
| 1507 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, | 1507 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, |
| 1508 kOsAll, | 1508 kOsAll, |
| 1509 SINGLE_VALUE_TYPE(switches::kEnableAppView) | 1509 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppView) |
| 1510 }, | 1510 }, |
| 1511 { | 1511 { |
| 1512 "disable-app-list-app-info", | 1512 "disable-app-list-app-info", |
| 1513 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, | 1513 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, |
| 1514 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, | 1514 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, |
| 1515 kOsLinux | kOsWin | kOsCrOS, | 1515 kOsLinux | kOsWin | kOsCrOS, |
| 1516 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) | 1516 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) |
| 1517 }, | 1517 }, |
| 1518 { | 1518 { |
| 1519 "enable-drive-apps-in-app-list", | 1519 "enable-drive-apps-in-app-list", |
| (...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2509 } | 2509 } |
| 2510 | 2510 |
| 2511 const Experiment* GetExperiments(size_t* count) { | 2511 const Experiment* GetExperiments(size_t* count) { |
| 2512 *count = num_experiments; | 2512 *count = num_experiments; |
| 2513 return experiments; | 2513 return experiments; |
| 2514 } | 2514 } |
| 2515 | 2515 |
| 2516 } // namespace testing | 2516 } // namespace testing |
| 2517 | 2517 |
| 2518 } // namespace about_flags | 2518 } // namespace about_flags |
| OLD | NEW |