| 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 2638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2649 | 2649 |
| 2650 // Name for the flag to enable expanded autofill poup layout for credit cards. | 2650 // Name for the flag to enable expanded autofill poup layout for credit cards. |
| 2651 extern const char kEnableExpandedAutofillCreditCardPopupLayout[]; | 2651 extern const char kEnableExpandedAutofillCreditCardPopupLayout[]; |
| 2652 | 2652 |
| 2653 // Description for the flag to enable expanded autofill poup layout for credit | 2653 // Description for the flag to enable expanded autofill poup layout for credit |
| 2654 // cards. | 2654 // cards. |
| 2655 extern const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[]; | 2655 extern const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[]; |
| 2656 | 2656 |
| 2657 #endif // defined(OS_ANDROID) | 2657 #endif // defined(OS_ANDROID) |
| 2658 | 2658 |
| 2659 // Name for the flag to enable display the issuer bank name of a credit card in |
| 2660 // autofill. |
| 2661 extern const char kEnableAutofillCreditCardBankNameDisplay[]; |
| 2662 |
| 2663 // Description for the flag to enable display the issuer bank name of a credit |
| 2664 // card in autofill. |
| 2665 extern const char kEnableAutofillCreditCardBankNameDisplayDescription[]; |
| 2666 |
| 2659 // Name for the flag to enable display the last used date of a credit card in | 2667 // Name for the flag to enable display the last used date of a credit card in |
| 2660 // autofill. | 2668 // autofill. |
| 2661 extern const char kEnableAutofillCreditCardLastUsedDateDisplay[]; | 2669 extern const char kEnableAutofillCreditCardLastUsedDateDisplay[]; |
| 2662 | 2670 |
| 2663 // Description for the flag to enable display the last used date of a credit | 2671 // Description for the flag to enable display the last used date of a credit |
| 2664 // card in autofill. | 2672 // card in autofill. |
| 2665 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; | 2673 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; |
| 2666 | 2674 |
| 2667 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) | 2675 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) |
| 2668 | 2676 |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3229 extern const char kEnableCopylessPasteName[]; | 3237 extern const char kEnableCopylessPasteName[]; |
| 3230 | 3238 |
| 3231 // Description of the flag that enables Copyless Paste. | 3239 // Description of the flag that enables Copyless Paste. |
| 3232 extern const char kEnableCopylessPasteDescription[]; | 3240 extern const char kEnableCopylessPasteDescription[]; |
| 3233 | 3241 |
| 3234 #endif // defined(OS_ANDROID) | 3242 #endif // defined(OS_ANDROID) |
| 3235 | 3243 |
| 3236 } // namespace flag_descriptions | 3244 } // namespace flag_descriptions |
| 3237 | 3245 |
| 3238 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3246 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
| OLD | NEW |