Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2789843004: [Payments] Upload card UI now has a CVC prompt (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 to
csashi 2017/03/31 21:48:14 "offer to save" (in quotes to make it easier to pa
Jared Saul 2017/04/01 04:18:01 Done.
2608 // save bubble if it was not detected during the checkout flow.
csashi 2017/03/31 21:48:14 s/if it .../, if it was not detected in the form/?
Jared Saul 2017/04/01 04:18:01 Done.
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698