| 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 1517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1528 }, | 1528 }, |
| 1529 #endif | 1529 #endif |
| 1530 { | 1530 { |
| 1531 "enable-streamlined-hosted-apps", | 1531 "enable-streamlined-hosted-apps", |
| 1532 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_NAME, | 1532 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_NAME, |
| 1533 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_DESCRIPTION, | 1533 IDS_FLAGS_ENABLE_STREAMLINED_HOSTED_APPS_DESCRIPTION, |
| 1534 kOsWin | kOsCrOS | kOsLinux, | 1534 kOsWin | kOsCrOS | kOsLinux, |
| 1535 SINGLE_VALUE_TYPE(switches::kEnableStreamlinedHostedApps) | 1535 SINGLE_VALUE_TYPE(switches::kEnableStreamlinedHostedApps) |
| 1536 }, | 1536 }, |
| 1537 { | 1537 { |
| 1538 "enable-prominent-url-app-flow", | |
| 1539 IDS_FLAGS_ENABLE_PROMINENT_URL_APP_FLOW_NAME, | |
| 1540 IDS_FLAGS_ENABLE_PROMINENT_URL_APP_FLOW_DESCRIPTION, | |
| 1541 kOsWin | kOsCrOS | kOsLinux, | |
| 1542 SINGLE_VALUE_TYPE(switches::kEnableProminentURLAppFlow) | |
| 1543 }, | |
| 1544 { | |
| 1545 "enable-ephemeral-apps", | 1538 "enable-ephemeral-apps", |
| 1546 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_NAME, | 1539 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_NAME, |
| 1547 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_DESCRIPTION, | 1540 IDS_FLAGS_ENABLE_EPHEMERAL_APPS_DESCRIPTION, |
| 1548 kOsAll, | 1541 kOsAll, |
| 1549 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) | 1542 SINGLE_VALUE_TYPE(switches::kEnableEphemeralApps) |
| 1550 }, | 1543 }, |
| 1551 { | 1544 { |
| 1552 "enable-linkable-ephemeral-apps", | 1545 "enable-linkable-ephemeral-apps", |
| 1553 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, | 1546 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_NAME, |
| 1554 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, | 1547 IDS_FLAGS_ENABLE_LINKABLE_EPHEMERAL_APPS_DESCRIPTION, |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2471 } | 2464 } |
| 2472 | 2465 |
| 2473 const Experiment* GetExperiments(size_t* count) { | 2466 const Experiment* GetExperiments(size_t* count) { |
| 2474 *count = num_experiments; | 2467 *count = num_experiments; |
| 2475 return experiments; | 2468 return experiments; |
| 2476 } | 2469 } |
| 2477 | 2470 |
| 2478 } // namespace testing | 2471 } // namespace testing |
| 2479 | 2472 |
| 2480 } // namespace about_flags | 2473 } // namespace about_flags |
| OLD | NEW |