| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 extern const char kEmbeddedExtensionOptionsName[]; | 166 extern const char kEmbeddedExtensionOptionsName[]; |
| 167 extern const char kEmbeddedExtensionOptionsDescription[]; | 167 extern const char kEmbeddedExtensionOptionsDescription[]; |
| 168 | 168 |
| 169 extern const char kEnableAdjustableLargeCursorName[]; | 169 extern const char kEnableAdjustableLargeCursorName[]; |
| 170 extern const char kEnableAdjustableLargeCursorDescription[]; | 170 extern const char kEnableAdjustableLargeCursorDescription[]; |
| 171 | 171 |
| 172 extern const char kEnableAsmWasmName[]; | 172 extern const char kEnableAsmWasmName[]; |
| 173 extern const char kEnableAsmWasmDescription[]; | 173 extern const char kEnableAsmWasmDescription[]; |
| 174 | 174 |
| 175 extern const char kEnableAutofillCreditCardBankNameDisplayName[]; |
| 176 extern const char kEnableAutofillCreditCardBankNameDisplayDescription[]; |
| 177 |
| 175 extern const char kEnableAutofillCreditCardLastUsedDateDisplayName[]; | 178 extern const char kEnableAutofillCreditCardLastUsedDateDisplayName[]; |
| 176 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; | 179 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; |
| 177 | 180 |
| 178 extern const char kEnableAutofillCreditCardUploadCvcPromptName[]; | 181 extern const char kEnableAutofillCreditCardUploadCvcPromptName[]; |
| 179 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[]; | 182 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[]; |
| 180 | 183 |
| 181 extern const char kEnableBrotliName[]; | 184 extern const char kEnableBrotliName[]; |
| 182 extern const char kEnableBrotliDescription[]; | 185 extern const char kEnableBrotliDescription[]; |
| 183 | 186 |
| 184 extern const char kEnableClearBrowsingDataCountersName[]; | 187 extern const char kEnableClearBrowsingDataCountersName[]; |
| (...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1522 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1525 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1523 | 1526 |
| 1524 // ============================================================================ | 1527 // ============================================================================ |
| 1525 // Don't just add flags to the end, put them in the right section in | 1528 // Don't just add flags to the end, put them in the right section in |
| 1526 // alphabetical order. See top instructions for more. | 1529 // alphabetical order. See top instructions for more. |
| 1527 // ============================================================================ | 1530 // ============================================================================ |
| 1528 | 1531 |
| 1529 } // namespace flag_descriptions | 1532 } // namespace flag_descriptions |
| 1530 | 1533 |
| 1531 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1534 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |