| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 161 |
| 162 extern const char kEmbeddedExtensionOptionsName[]; | 162 extern const char kEmbeddedExtensionOptionsName[]; |
| 163 extern const char kEmbeddedExtensionOptionsDescription[]; | 163 extern const char kEmbeddedExtensionOptionsDescription[]; |
| 164 | 164 |
| 165 extern const char kEnableAdjustableLargeCursorName[]; | 165 extern const char kEnableAdjustableLargeCursorName[]; |
| 166 extern const char kEnableAdjustableLargeCursorDescription[]; | 166 extern const char kEnableAdjustableLargeCursorDescription[]; |
| 167 | 167 |
| 168 extern const char kEnableAsmWasmName[]; | 168 extern const char kEnableAsmWasmName[]; |
| 169 extern const char kEnableAsmWasmDescription[]; | 169 extern const char kEnableAsmWasmDescription[]; |
| 170 | 170 |
| 171 extern const char kEnableAutofillCreditCardBankNameDisplayName[]; |
| 172 extern const char kEnableAutofillCreditCardBankNameDisplayDescription[]; |
| 173 |
| 171 extern const char kEnableAutofillCreditCardLastUsedDateDisplayName[]; | 174 extern const char kEnableAutofillCreditCardLastUsedDateDisplayName[]; |
| 172 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; | 175 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; |
| 173 | 176 |
| 174 extern const char kEnableAutofillCreditCardUploadCvcPromptName[]; | 177 extern const char kEnableAutofillCreditCardUploadCvcPromptName[]; |
| 175 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[]; | 178 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[]; |
| 176 | 179 |
| 177 extern const char kEnableBrotliName[]; | 180 extern const char kEnableBrotliName[]; |
| 178 extern const char kEnableBrotliDescription[]; | 181 extern const char kEnableBrotliDescription[]; |
| 179 | 182 |
| 180 extern const char kEnableClearBrowsingDataCountersName[]; | 183 extern const char kEnableClearBrowsingDataCountersName[]; |
| (...skipping 1321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1502 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1505 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1503 | 1506 |
| 1504 // ============================================================================ | 1507 // ============================================================================ |
| 1505 // Don't just add flags to the end, put them in the right section in | 1508 // Don't just add flags to the end, put them in the right section in |
| 1506 // alphabetical order. See top instructions for more. | 1509 // alphabetical order. See top instructions for more. |
| 1507 // ============================================================================ | 1510 // ============================================================================ |
| 1508 | 1511 |
| 1509 } // namespace flag_descriptions | 1512 } // namespace flag_descriptions |
| 1510 | 1513 |
| 1511 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1514 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |