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

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

Issue 2711543002: Experiment to add bank name in autofill ui. (Closed)
Patch Set: For git sync and file format 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 #include "chrome/browser/flag_descriptions.h" 5 #include "chrome/browser/flag_descriptions.h"
6 6
7 namespace flag_descriptions { 7 namespace flag_descriptions {
8 8
9 // Material Design version of chrome://bookmarks 9 // Material Design version of chrome://bookmarks
10 10
(...skipping 2429 matching lines...) Expand 10 before | Expand all | Expand 10 after
2440 2440
2441 const char kEnableExpandedAutofillCreditCardPopupLayout[] = 2441 const char kEnableExpandedAutofillCreditCardPopupLayout[] =
2442 "Use expanded autofill credit card popup layout."; 2442 "Use expanded autofill credit card popup layout.";
2443 2443
2444 const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] = 2444 const char kEnableExpandedAutofillCreditCardPopupLayoutDescription[] =
2445 "If enabled, displays autofill credit card popup using expanded " 2445 "If enabled, displays autofill credit card popup using expanded "
2446 "layout."; 2446 "layout.";
2447 2447
2448 #endif // defined(OS_ANDROID) 2448 #endif // defined(OS_ANDROID)
2449 2449
2450 const char kEnableAutofillCreditCardBankNameDisplay[] =
2451 "Display the issuer bank name of a credit card in autofill.";
2452
2453 const char kEnableAutofillCreditCardBankNameDisplayDescription[] =
2454 "If enabled, display the issuer bank name of a credit card in autofill.";
2455
2450 const char kEnableAutofillCreditCardLastUsedDateDisplay[] = 2456 const char kEnableAutofillCreditCardLastUsedDateDisplay[] =
2451 "Display the last used date of a credit card in autofill."; 2457 "Display the last used date of a credit card in autofill.";
2452 2458
2453 const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] = 2459 const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] =
2454 "If enabled, display the last used date of a credit card in autofill."; 2460 "If enabled, display the last used date of a credit card in autofill.";
2455 2461
2456 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) 2462 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD)
2457 2463
2458 const char kGoogleBrandedContextMenuName[] = 2464 const char kGoogleBrandedContextMenuName[] =
2459 "Google branding in the context menu"; 2465 "Google branding in the context menu";
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
2977 const char kEnableCopylessPasteDescription[] = 2983 const char kEnableCopylessPasteDescription[] =
2978 "Provide suggestions for text input, based on your recent context. For " 2984 "Provide suggestions for text input, based on your recent context. For "
2979 "example, if you looked at a restaurant website and switched to the Maps " 2985 "example, if you looked at a restaurant website and switched to the Maps "
2980 "app, the keyboard would offer the name of that restaurant as a suggestion " 2986 "app, the keyboard would offer the name of that restaurant as a suggestion "
2981 "to enter into the search bar. The data is indexed locally, and never sent " 2987 "to enter into the search bar. The data is indexed locally, and never sent "
2982 "to the server. It's disabled in incognito mode."; 2988 "to the server. It's disabled in incognito mode.";
2983 2989
2984 #endif // defined(OS_ANDROID) 2990 #endif // defined(OS_ANDROID)
2985 2991
2986 } // namespace flag_descriptions 2992 } // namespace flag_descriptions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698