| 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 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1468 IDS_FLAGS_ENABLE_APP_LIST_NAME, | 1468 IDS_FLAGS_ENABLE_APP_LIST_NAME, |
| 1469 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, | 1469 IDS_FLAGS_ENABLE_APP_LIST_DESCRIPTION, |
| 1470 kOsLinux, | 1470 kOsLinux, |
| 1471 SINGLE_VALUE_TYPE(switches::kEnableAppList) | 1471 SINGLE_VALUE_TYPE(switches::kEnableAppList) |
| 1472 }, | 1472 }, |
| 1473 #endif | 1473 #endif |
| 1474 { | 1474 { |
| 1475 "enable-app-view", | 1475 "enable-app-view", |
| 1476 IDS_FLAGS_ENABLE_APP_VIEW_NAME, | 1476 IDS_FLAGS_ENABLE_APP_VIEW_NAME, |
| 1477 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, | 1477 IDS_FLAGS_ENABLE_APP_VIEW_DESCRIPTION, |
| 1478 kOsAll, | 1478 kOsDesktop, |
| 1479 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppView) | 1479 SINGLE_VALUE_TYPE(extensions::switches::kEnableAppView) |
| 1480 }, | 1480 }, |
| 1481 { | 1481 { |
| 1482 "disable-app-list-app-info", | 1482 "disable-app-list-app-info", |
| 1483 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, | 1483 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST, |
| 1484 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, | 1484 IDS_FLAGS_DISABLE_APP_INFO_IN_APP_LIST_DESCRIPTION, |
| 1485 kOsLinux | kOsWin | kOsCrOS, | 1485 kOsLinux | kOsWin | kOsCrOS, |
| 1486 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) | 1486 SINGLE_VALUE_TYPE(app_list::switches::kDisableAppInfo) |
| 1487 }, | 1487 }, |
| 1488 { | 1488 { |
| (...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2479 } | 2479 } |
| 2480 | 2480 |
| 2481 const Experiment* GetExperiments(size_t* count) { | 2481 const Experiment* GetExperiments(size_t* count) { |
| 2482 *count = num_experiments; | 2482 *count = num_experiments; |
| 2483 return experiments; | 2483 return experiments; |
| 2484 } | 2484 } |
| 2485 | 2485 |
| 2486 } // namespace testing | 2486 } // namespace testing |
| 2487 | 2487 |
| 2488 } // namespace about_flags | 2488 } // namespace about_flags |
| OLD | NEW |