| 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| 7 | 7 |
| 8 // Includes needed for macros allowing conditional compilation of some strings. | 8 // Includes needed for macros allowing conditional compilation of some strings. |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "build/buildflag.h" | 10 #include "build/buildflag.h" |
| (...skipping 2760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2771 | 2771 |
| 2772 // Description for the flag to enable the Web Payments to skip UI | 2772 // Description for the flag to enable the Web Payments to skip UI |
| 2773 extern const char kEnableWebPaymentsSingleAppUiSkipDescription[]; | 2773 extern const char kEnableWebPaymentsSingleAppUiSkipDescription[]; |
| 2774 | 2774 |
| 2775 // Name of the flag to enable third party Android payment apps | 2775 // Name of the flag to enable third party Android payment apps |
| 2776 extern const char kAndroidPaymentAppsName[]; | 2776 extern const char kAndroidPaymentAppsName[]; |
| 2777 | 2777 |
| 2778 // Description for the flag to enable third party Android payment apps | 2778 // Description for the flag to enable third party Android payment apps |
| 2779 extern const char kAndroidPaymentAppsDescription[]; | 2779 extern const char kAndroidPaymentAppsDescription[]; |
| 2780 | 2780 |
| 2781 // Title of the flag to enable filtering out third party Android payment apps | |
| 2782 extern const char kAndroidPaymentAppsFilterTitle[]; | |
| 2783 | |
| 2784 // Description for the flag to enable filtering out third party Android payment | |
| 2785 // apps | |
| 2786 extern const char kAndroidPaymentAppsFilterDescription[]; | |
| 2787 | |
| 2788 #endif // defined(OS_ANDROID) | 2781 #endif // defined(OS_ANDROID) |
| 2789 | 2782 |
| 2790 // Name for the flag to enable feature policy. | 2783 // Name for the flag to enable feature policy. |
| 2791 extern const char kFeaturePolicyName[]; | 2784 extern const char kFeaturePolicyName[]; |
| 2792 | 2785 |
| 2793 // Description for the flag to enable feature policy. | 2786 // Description for the flag to enable feature policy. |
| 2794 extern const char kFeaturePolicyDescription[]; | 2787 extern const char kFeaturePolicyDescription[]; |
| 2795 | 2788 |
| 2796 // Audio rendering mixing experiment strings. | 2789 // Audio rendering mixing experiment strings. |
| 2797 | 2790 |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3296 | 3289 |
| 3297 // Name of the flag that enables Blink's idle time spell checker. | 3290 // Name of the flag that enables Blink's idle time spell checker. |
| 3298 extern const char kEnableIdleTimeSpellCheckingName[]; | 3291 extern const char kEnableIdleTimeSpellCheckingName[]; |
| 3299 | 3292 |
| 3300 // Description of the flag that enables Blink's idle time spell checker. | 3293 // Description of the flag that enables Blink's idle time spell checker. |
| 3301 extern const char kEnableIdleTimeSpellCheckingDescription[]; | 3294 extern const char kEnableIdleTimeSpellCheckingDescription[]; |
| 3302 | 3295 |
| 3303 } // namespace flag_descriptions | 3296 } // namespace flag_descriptions |
| 3304 | 3297 |
| 3305 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3298 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |