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