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 1577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1588 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) | 1588 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) |
1589 }, | 1589 }, |
1590 { | 1590 { |
1591 "enable-linkable-ephemeral-apps", | 1591 "enable-linkable-ephemeral-apps", |
1592 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, | 1592 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, |
1593 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, | 1593 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, |
1594 kOsAll, | 1594 kOsAll, |
1595 SINGLE_VALUE_TYPE(switches::kEnableLinkableEphemeralApps) | 1595 SINGLE_VALUE_TYPE(switches::kEnableLinkableEphemeralApps) |
1596 }, | 1596 }, |
1597 { | 1597 { |
1598 "enable-service-worker", | |
1599 IDS_FLAGS_ENABLE_SERVICE_WORKER_NAME, | |
1600 IDS_FLAGS_ENABLE_SERVICE_WORKER_DESCRIPTION, | |
1601 kOsAll, | |
1602 SINGLE_VALUE_TYPE(switches::kEnableServiceWorker) | |
1603 }, | |
1604 { | |
1605 "enable-service-worker-sync", | 1598 "enable-service-worker-sync", |
1606 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_NAME, | 1599 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_NAME, |
1607 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_DESCRIPTION, | 1600 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_DESCRIPTION, |
1608 kOsAll, | 1601 kOsAll, |
1609 SINGLE_VALUE_TYPE(switches::kEnableServiceWorkerSync) | 1602 SINGLE_VALUE_TYPE(switches::kEnableServiceWorkerSync) |
1610 }, | 1603 }, |
1611 #if defined(OS_ANDROID) | 1604 #if defined(OS_ANDROID) |
1612 { | 1605 { |
1613 "disable-click-delay", | 1606 "disable-click-delay", |
1614 IDS_FLAGS_DISABLE_CLICK_DELAY_NAME, | 1607 IDS_FLAGS_DISABLE_CLICK_DELAY_NAME, |
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2463 } | 2456 } |
2464 | 2457 |
2465 const Experiment* GetExperiments(size_t* count) { | 2458 const Experiment* GetExperiments(size_t* count) { |
2466 *count = num_experiments; | 2459 *count = num_experiments; |
2467 return experiments; | 2460 return experiments; |
2468 } | 2461 } |
2469 | 2462 |
2470 } // namespace testing | 2463 } // namespace testing |
2471 | 2464 |
2472 } // namespace about_flags | 2465 } // namespace about_flags |
OLD | NEW |