| 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 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1504 "enable-streamlined-hosted-apps", | 1504 "enable-streamlined-hosted-apps", |
| 1505 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_NAME, | 1505 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_NAME, |
| 1506 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_DESCRIPTION, | 1506 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_DESCRIPTION, |
| 1507 kOsWin | kOsCrOS | kOsLinux, | 1507 kOsWin | kOsCrOS | kOsLinux, |
| 1508 SINGLE_VALUE_TYPE(switches::kEnableStreamlinedHostedApps) | 1508 SINGLE_VALUE_TYPE(switches::kEnableStreamlinedHostedApps) |
| 1509 }, | 1509 }, |
| 1510 { | 1510 { |
| 1511 "enable-ephemeral-apps", | 1511 "enable-ephemeral-apps", |
| 1512 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_NAME, | 1512 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_NAME, |
| 1513 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_DESCRIPTION, | 1513 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_DESCRIPTION, |
| 1514 kOsWin | kOsLinux | kOsCrOS, | 1514 kOsAll, |
| 1515 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) | 1515 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) |
| 1516 }, | 1516 }, |
| 1517 { | 1517 { |
| 1518 "enable-linkable-ephemeral-apps", | 1518 "enable-linkable-ephemeral-apps", |
| 1519 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, | 1519 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, |
| 1520 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, | 1520 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, |
| 1521 kOsWin | kOsLinux | kOsCrOS, | 1521 kOsAll, |
| 1522 SINGLE_VALUE_TYPE(switches::kEnableLinkableEphemeralApps) | 1522 SINGLE_VALUE_TYPE(switches::kEnableLinkableEphemeralApps) |
| 1523 }, | 1523 }, |
| 1524 { | 1524 { |
| 1525 "enable-service-worker", | 1525 "enable-service-worker", |
| 1526 IDS_FLAGS_ENABLE_SERVICE_WORKER_NAME, | 1526 IDS_FLAGS_ENABLE_SERVICE_WORKER_NAME, |
| 1527 IDS_FLAGS_ENABLE_SERVICE_WORKER_DESCRIPTION, | 1527 IDS_FLAGS_ENABLE_SERVICE_WORKER_DESCRIPTION, |
| 1528 kOsAll, | 1528 kOsAll, |
| 1529 SINGLE_VALUE_TYPE(switches::kEnableServiceWorker) | 1529 SINGLE_VALUE_TYPE(switches::kEnableServiceWorker) |
| 1530 }, | 1530 }, |
| 1531 { | 1531 { |
| (...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2347 } | 2347 } |
| 2348 | 2348 |
| 2349 const Experiment* GetExperiments(size_t* count) { | 2349 const Experiment* GetExperiments(size_t* count) { |
| 2350 *count = num_experiments; | 2350 *count = num_experiments; |
| 2351 return experiments; | 2351 return experiments; |
| 2352 } | 2352 } |
| 2353 | 2353 |
| 2354 } // namespace testing | 2354 } // namespace testing |
| 2355 | 2355 |
| 2356 } // namespace about_flags | 2356 } // namespace about_flags |
| OLD | NEW |