| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
| 6 | 6 |
| 7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
| 8 | 8 |
| 9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
| 10 | 10 |
| (...skipping 2573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2584 | 2584 |
| 2585 const char kEnableWebPaymentsSingleAppUiSkipDescription[] = | 2585 const char kEnableWebPaymentsSingleAppUiSkipDescription[] = |
| 2586 "Enable Web Payments to skip showing its UI if the developer specifies " | 2586 "Enable Web Payments to skip showing its UI if the developer specifies " |
| 2587 "a single app."; | 2587 "a single app."; |
| 2588 | 2588 |
| 2589 const char kAndroidPaymentAppsName[] = "Android payment apps"; | 2589 const char kAndroidPaymentAppsName[] = "Android payment apps"; |
| 2590 | 2590 |
| 2591 const char kAndroidPaymentAppsDescription[] = | 2591 const char kAndroidPaymentAppsDescription[] = |
| 2592 "Enable third party Android apps to integrate as payment apps"; | 2592 "Enable third party Android apps to integrate as payment apps"; |
| 2593 | 2593 |
| 2594 const char kServiceWorkerPaymentAppsName[] = "Service Worker payment apps"; |
| 2595 |
| 2596 const char kServiceWorkerPaymentAppsDescription[] = |
| 2597 "Enable Service Worker applications to integrate as payment apps"; |
| 2598 |
| 2594 #endif // defined(OS_ANDROID) | 2599 #endif // defined(OS_ANDROID) |
| 2595 | 2600 |
| 2596 const char kFeaturePolicyName[] = "Feature Policy"; | 2601 const char kFeaturePolicyName[] = "Feature Policy"; |
| 2597 | 2602 |
| 2598 const char kFeaturePolicyDescription[] = | 2603 const char kFeaturePolicyDescription[] = |
| 2599 "Enables granting and removing access to features through the " | 2604 "Enables granting and removing access to features through the " |
| 2600 "Feature-Policy HTTP header."; | 2605 "Feature-Policy HTTP header."; |
| 2601 | 2606 |
| 2602 // Audio rendering mixing experiment strings. | 2607 // Audio rendering mixing experiment strings. |
| 2603 | 2608 |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3128 "hard-reload."; | 3133 "hard-reload."; |
| 3129 | 3134 |
| 3130 const char kCaptureThumbnailOnLoadFinishedName[] = | 3135 const char kCaptureThumbnailOnLoadFinishedName[] = |
| 3131 "Capture page thumbnail on load finished"; | 3136 "Capture page thumbnail on load finished"; |
| 3132 | 3137 |
| 3133 const char kCaptureThumbnailOnLoadFinishedDescription[] = | 3138 const char kCaptureThumbnailOnLoadFinishedDescription[] = |
| 3134 "Capture a page thumbnail (for use on the New Tab page) when the page load " | 3139 "Capture a page thumbnail (for use on the New Tab page) when the page load " |
| 3135 "finishes, in addition to other times a thumbnail may be captured."; | 3140 "finishes, in addition to other times a thumbnail may be captured."; |
| 3136 | 3141 |
| 3137 } // namespace flag_descriptions | 3142 } // namespace flag_descriptions |
| OLD | NEW |