| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 174 |
| 175 extern const char kEnableAutofillCreditCardBankNameDisplayName[]; | 175 extern const char kEnableAutofillCreditCardBankNameDisplayName[]; |
| 176 extern const char kEnableAutofillCreditCardBankNameDisplayDescription[]; | 176 extern const char kEnableAutofillCreditCardBankNameDisplayDescription[]; |
| 177 | 177 |
| 178 extern const char kEnableAutofillCreditCardLastUsedDateDisplayName[]; | 178 extern const char kEnableAutofillCreditCardLastUsedDateDisplayName[]; |
| 179 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; | 179 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; |
| 180 | 180 |
| 181 extern const char kEnableAutofillCreditCardUploadCvcPromptName[]; | 181 extern const char kEnableAutofillCreditCardUploadCvcPromptName[]; |
| 182 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[]; | 182 extern const char kEnableAutofillCreditCardUploadCvcPromptDescription[]; |
| 183 | 183 |
| 184 extern const char kEnableAutofillCreditCardUploadNewUiName[]; |
| 185 extern const char kEnableAutofillCreditCardUploadNewUiDescription[]; |
| 186 |
| 184 extern const char kEnableBreakingNewsPushName[]; | 187 extern const char kEnableBreakingNewsPushName[]; |
| 185 extern const char kEnableBreakingNewsPushDescription[]; | 188 extern const char kEnableBreakingNewsPushDescription[]; |
| 186 | 189 |
| 187 extern const char kEnableBrotliName[]; | 190 extern const char kEnableBrotliName[]; |
| 188 extern const char kEnableBrotliDescription[]; | 191 extern const char kEnableBrotliDescription[]; |
| 189 | 192 |
| 190 extern const char kEnableClearBrowsingDataCountersName[]; | 193 extern const char kEnableClearBrowsingDataCountersName[]; |
| 191 extern const char kEnableClearBrowsingDataCountersDescription[]; | 194 extern const char kEnableClearBrowsingDataCountersDescription[]; |
| 192 | 195 |
| 193 extern const char kEnableClientLoFiName[]; | 196 extern const char kEnableClientLoFiName[]; |
| (...skipping 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1623 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1626 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
| 1624 | 1627 |
| 1625 // ============================================================================ | 1628 // ============================================================================ |
| 1626 // Don't just add flags to the end, put them in the right section in | 1629 // Don't just add flags to the end, put them in the right section in |
| 1627 // alphabetical order. See top instructions for more. | 1630 // alphabetical order. See top instructions for more. |
| 1628 // ============================================================================ | 1631 // ============================================================================ |
| 1629 | 1632 |
| 1630 } // namespace flag_descriptions | 1633 } // namespace flag_descriptions |
| 1631 | 1634 |
| 1632 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 1635 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |