| 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 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1594 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) | 1594 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) |
| 1595 }, | 1595 }, |
| 1596 { | 1596 { |
| 1597 "enable-linkable-ephemeral-apps", | 1597 "enable-linkable-ephemeral-apps", |
| 1598 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, | 1598 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, |
| 1599 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, | 1599 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, |
| 1600 kOsAll, | 1600 kOsAll, |
| 1601 SINGLE_VALUE_TYPE(switches::kEnableLinkableEphemeralApps) | 1601 SINGLE_VALUE_TYPE(switches::kEnableLinkableEphemeralApps) |
| 1602 }, | 1602 }, |
| 1603 { | 1603 { |
| 1604 "enable-service-worker", | |
| 1605 IDS_FLAGS_ENABLE_SERVICE_WORKER_NAME, | |
| 1606 IDS_FLAGS_ENABLE_SERVICE_WORKER_DESCRIPTION, | |
| 1607 kOsAll, | |
| 1608 SINGLE_VALUE_TYPE(switches::kEnableServiceWorker) | |
| 1609 }, | |
| 1610 { | |
| 1611 "enable-service-worker-sync", | 1604 "enable-service-worker-sync", |
| 1612 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_NAME, | 1605 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_NAME, |
| 1613 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_DESCRIPTION, | 1606 IDS_FLAGS_ENABLE_SERVICE_WORKER_SYNC_DESCRIPTION, |
| 1614 kOsAll, | 1607 kOsAll, |
| 1615 SINGLE_VALUE_TYPE(switches::kEnableServiceWorkerSync) | 1608 SINGLE_VALUE_TYPE(switches::kEnableServiceWorkerSync) |
| 1616 }, | 1609 }, |
| 1617 #if defined(OS_ANDROID) | 1610 #if defined(OS_ANDROID) |
| 1618 { | 1611 { |
| 1619 "disable-click-delay", | 1612 "disable-click-delay", |
| 1620 IDS_FLAGS_DISABLE_CLICK_DELAY_NAME, | 1613 IDS_FLAGS_DISABLE_CLICK_DELAY_NAME, |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2469 } | 2462 } |
| 2470 | 2463 |
| 2471 const Experiment* GetExperiments(size_t* count) { | 2464 const Experiment* GetExperiments(size_t* count) { |
| 2472 *count = num_experiments; | 2465 *count = num_experiments; |
| 2473 return experiments; | 2466 return experiments; |
| 2474 } | 2467 } |
| 2475 | 2468 |
| 2476 } // namespace testing | 2469 } // namespace testing |
| 2477 | 2470 |
| 2478 } // namespace about_flags | 2471 } // namespace about_flags |
| OLD | NEW |