| 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 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1460 IDS_FLAGS_ENABLE_APP_LIST_NAME, | 1460 IDS_FLAGS_ENABLE_APP_LIST_NAME, |
| 1461 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, | 1461 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, |
| 1462 kOsLinux, | 1462 kOsLinux, |
| 1463 SINGLE_VALUE_TYPE(switches::kEnableAppList) | 1463 SINGLE_VALUE_TYPE(switches::kEnableAppList) |
| 1464 }, | 1464 }, |
| 1465 #endif | 1465 #endif |
| 1466 { | 1466 { |
| 1467 "enable-app-view", | 1467 "enable-app-view", |
| 1468 IDS_FLAGS_ENABLE_APP_VIEW_NAME, | 1468 IDS_FLAGS_ENABLE_APP_VIEW_NAME, |
| 1469 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, | 1469 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, |
| 1470 kOsAll, | 1470 kOsDesktop, |
| 1471 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppView) | 1471 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppView) |
| 1472 }, | 1472 }, |
| 1473 { | 1473 { |
| 1474 "disable-app-list-app-info", | 1474 "disable-app-list-app-info", |
| 1475 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, | 1475 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, |
| 1476 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, | 1476 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, |
| 1477 kOsLinux | kOsWin | kOsCrOS, | 1477 kOsLinux | kOsWin | kOsCrOS, |
| 1478 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) | 1478 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) |
| 1479 }, | 1479 }, |
| 1480 { | 1480 { |
| (...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2471 } | 2471 } |
| 2472 | 2472 |
| 2473 const Experiment* GetExperiments(size_t* count) { | 2473 const Experiment* GetExperiments(size_t* count) { |
| 2474 *count = num_experiments; | 2474 *count = num_experiments; |
| 2475 return experiments; | 2475 return experiments; |
| 2476 } | 2476 } |
| 2477 | 2477 |
| 2478 } // namespace testing | 2478 } // namespace testing |
| 2479 | 2479 |
| 2480 } // namespace about_flags | 2480 } // namespace about_flags |
| OLD | NEW |