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