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 2589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2600 #endif // defined(OS_ANDROID) | 2600 #endif // defined(OS_ANDROID) |
2601 | 2601 |
2602 // Name for the flag to enable display the last used date of a credit card in | 2602 // Name for the flag to enable display the last used date of a credit card in |
2603 // autofill. | 2603 // autofill. |
2604 extern const char kEnableAutofillCreditCardLastUsedDateDisplay[]; | 2604 extern const char kEnableAutofillCreditCardLastUsedDateDisplay[]; |
2605 | 2605 |
2606 // Description for the flag to enable display the last used date of a credit | 2606 // Description for the flag to enable display the last used date of a credit |
2607 // card in autofill. | 2607 // card in autofill. |
2608 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; | 2608 extern const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[]; |
2609 | 2609 |
| 2610 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ |
| 2611 defined(OS_WIN) |
| 2612 |
| 2613 // Name for the flag to enable requesting CVC in the credit card upload "offer |
| 2614 // to save" bubble if it was not already detected in the submitted form. |
| 2615 extern const char kAutofillUpstreamRequestCvcIfMissing[]; |
| 2616 |
| 2617 // Description for the flag to enable requesting CVC in the credit card upload |
| 2618 // offer to save bubble if it was not detected during the checkout flow. |
| 2619 extern const char kAutofillUpstreamRequestCvcIfMissingDescription[]; |
| 2620 |
| 2621 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
| 2622 // defined(OS_WIN) |
| 2623 |
2610 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) | 2624 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) |
2611 | 2625 |
2612 // Name for the flag to enable Google branding in the context menu. | 2626 // Name for the flag to enable Google branding in the context menu. |
2613 extern const char kGoogleBrandedContextMenuName[]; | 2627 extern const char kGoogleBrandedContextMenuName[]; |
2614 | 2628 |
2615 // Description for the flag to enable Google branding in the context menu. | 2629 // Description for the flag to enable Google branding in the context menu. |
2616 extern const char kGoogleBrandedContextMenuDescription[]; | 2630 extern const char kGoogleBrandedContextMenuDescription[]; |
2617 | 2631 |
2618 #endif // !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) | 2632 #endif // !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) |
2619 | 2633 |
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3152 | 3166 |
3153 // Description of the about: flag enabling emoji, handwriting and voice input on | 3167 // Description of the about: flag enabling emoji, handwriting and voice input on |
3154 // opt-in IME menu. | 3168 // opt-in IME menu. |
3155 extern const char kEnableEhvInputDescription[]; | 3169 extern const char kEnableEhvInputDescription[]; |
3156 | 3170 |
3157 #endif // #if defined(OS_CHROMEOS) | 3171 #endif // #if defined(OS_CHROMEOS) |
3158 | 3172 |
3159 } // namespace flag_descriptions | 3173 } // namespace flag_descriptions |
3160 | 3174 |
3161 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ | 3175 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ |
OLD | NEW |