| 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 1646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1657 #if defined(OS_WIN) | 1657 #if defined(OS_WIN) |
| 1658 | 1658 |
| 1659 // Name of the flag to enable AppContainer lockdown experiment. | 1659 // Name of the flag to enable AppContainer lockdown experiment. |
| 1660 extern const char kEnableAppcontainerName[]; | 1660 extern const char kEnableAppcontainerName[]; |
| 1661 | 1661 |
| 1662 // Description of the flag to enable AppContainer lockdown experiment. | 1662 // Description of the flag to enable AppContainer lockdown experiment. |
| 1663 extern const char kEnableAppcontainerDescription[]; | 1663 extern const char kEnableAppcontainerDescription[]; |
| 1664 | 1664 |
| 1665 #endif // defined(OS_WIN) | 1665 #endif // defined(OS_WIN) |
| 1666 | 1666 |
| 1667 #if defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) |
| 1668 |
| 1669 // Name of the flag to add the Certificate Viewer link to the Page Info UI. |
| 1670 extern const char kShowCertLinkOnPageInfoName[]; |
| 1671 |
| 1672 // Description of the flag to add the Certificate Viewer link to the Page |
| 1673 // Info UI. |
| 1674 extern const char kShowCertLinkOnPageInfoDescription[]; |
| 1675 |
| 1676 #endif // defined(TOOLKIT_VIEWS) || (defined(OS_MACOSX) && !defined(OS_IOS)) |
| 1677 |
| 1667 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1678 #if defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1668 | 1679 |
| 1669 // Name of the flag to enable uploading Autofill credit cards. | 1680 // Name of the flag to enable uploading Autofill credit cards. |
| 1670 extern const char kAutofillCreditCardUploadName[]; | 1681 extern const char kAutofillCreditCardUploadName[]; |
| 1671 | 1682 |
| 1672 // Description of the flag to enable uploading Autofill credit cards. | 1683 // Description of the flag to enable uploading Autofill credit cards. |
| 1673 extern const char kAutofillCreditCardUploadDescription[]; | 1684 extern const char kAutofillCreditCardUploadDescription[]; |
| 1674 | 1685 |
| 1675 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1686 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1676 | 1687 |
| (...skipping 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3146 | 3157 |
| 3147 // Description of the about: flag enabling emoji, handwriting and voice input on | 3158 // Description of the about: flag enabling emoji, handwriting and voice input on |
| 3148 // opt-in IME menu. | 3159 // opt-in IME menu. |
| 3149 extern const char kEnableEhvInputDescription[]; | 3160 extern const char kEnableEhvInputDescription[]; |
| 3150 | 3161 |
| 3151 #endif // #if defined(OS_CHROMEOS) | 3162 #endif // #if defined(OS_CHROMEOS) |
| 3152 | 3163 |
| 3153 } // namespace flag_descriptions | 3164 } // namespace flag_descriptions |
| 3154 | 3165 |
| 3155 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3166 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |