| 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 1727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1738 #if defined(OS_WIN) | 1738 #if defined(OS_WIN) |
| 1739 | 1739 |
| 1740 // Name of the flag to enable AppContainer lockdown experiment. | 1740 // Name of the flag to enable AppContainer lockdown experiment. |
| 1741 extern const char kEnableAppcontainerName[]; | 1741 extern const char kEnableAppcontainerName[]; |
| 1742 | 1742 |
| 1743 // Description of the flag to enable AppContainer lockdown experiment. | 1743 // Description of the flag to enable AppContainer lockdown experiment. |
| 1744 extern const char kEnableAppcontainerDescription[]; | 1744 extern const char kEnableAppcontainerDescription[]; |
| 1745 | 1745 |
| 1746 #endif // defined(OS_WIN) | 1746 #endif // defined(OS_WIN) |
| 1747 | 1747 |
| 1748 #if defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) |
| 1749 |
| 1750 // Name of the flag to add the Certificate Viewer link to the Page Info UI. |
| 1751 extern const char kShowCertLinkOnPageInfoName[]; |
| 1752 |
| 1753 // Description of the flag to add the Certificate Viewer link to the Page |
| 1754 // Info UI. |
| 1755 extern const char kShowCertLinkOnPageInfoDescription[]; |
| 1756 |
| 1757 #endif // defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) |
| 1758 |
| 1748 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1759 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1749 | 1760 |
| 1750 // Name of the flag to enable uploading Autofill credit cards. | 1761 // Name of the flag to enable uploading Autofill credit cards. |
| 1751 extern const char kAutofillCreditCardUploadName[]; | 1762 extern const char kAutofillCreditCardUploadName[]; |
| 1752 | 1763 |
| 1753 // Description of the flag to enable uploading Autofill credit cards. | 1764 // Description of the flag to enable uploading Autofill credit cards. |
| 1754 extern const char kAutofillCreditCardUploadDescription[]; | 1765 extern const char kAutofillCreditCardUploadDescription[]; |
| 1755 | 1766 |
| 1756 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1767 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1757 | 1768 |
| (...skipping 1558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3316 | 3327 |
| 3317 // Description of the autoplay policy that has no user gesture requirements. | 3328 // Description of the autoplay policy that has no user gesture requirements. |
| 3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; | 3329 extern const char kAutoplayPolicyNoUserGestureRequired[]; |
| 3319 | 3330 |
| 3320 // Description of the autoplay policy that requires a user gesture. | 3331 // Description of the autoplay policy that requires a user gesture. |
| 3321 extern const char kAutoplayPolicyUserGestureRequired[]; | 3332 extern const char kAutoplayPolicyUserGestureRequired[]; |
| 3322 | 3333 |
| 3323 } // namespace flag_descriptions | 3334 } // namespace flag_descriptions |
| 3324 | 3335 |
| 3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3336 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |