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 #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 2381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2392 "layout."; | 2392 "layout."; |
2393 | 2393 |
2394 #endif // defined(OS_ANDROID) | 2394 #endif // defined(OS_ANDROID) |
2395 | 2395 |
2396 const char kEnableAutofillCreditCardLastUsedDateDisplay[] = | 2396 const char kEnableAutofillCreditCardLastUsedDateDisplay[] = |
2397 "Display the last used date of a credit card in autofill."; | 2397 "Display the last used date of a credit card in autofill."; |
2398 | 2398 |
2399 const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] = | 2399 const char kEnableAutofillCreditCardLastUsedDateDisplayDescription[] = |
2400 "If enabled, display the last used date of a credit card in autofill."; | 2400 "If enabled, display the last used date of a credit card in autofill."; |
2401 | 2401 |
| 2402 #if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || \ |
| 2403 defined(OS_WIN) |
| 2404 |
| 2405 const char kAutofillUpstreamRequestCvcIfMissing[] = |
| 2406 "Enable requesting missing CVC during Autofill credit card upload"; |
| 2407 |
| 2408 const char kAutofillUpstreamRequestCvcIfMissingDescription[] = |
| 2409 "If enabled, requests missing CVC when offering to upload credit cards to " |
| 2410 "Google Payments."; |
| 2411 |
| 2412 #endif // defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_MACOSX) || |
| 2413 // defined(OS_WIN) |
| 2414 |
2402 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) | 2415 #if !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) |
2403 | 2416 |
2404 const char kGoogleBrandedContextMenuName[] = | 2417 const char kGoogleBrandedContextMenuName[] = |
2405 "Google branding in the context menu"; | 2418 "Google branding in the context menu"; |
2406 | 2419 |
2407 const char kGoogleBrandedContextMenuDescription[] = | 2420 const char kGoogleBrandedContextMenuDescription[] = |
2408 "Shows a Google icon next to context menu items powered by Google " | 2421 "Shows a Google icon next to context menu items powered by Google " |
2409 "services."; | 2422 "services."; |
2410 | 2423 |
2411 #endif // !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) | 2424 #endif // !defined(OS_ANDROID) && defined(GOOGLE_CHROME_BUILD) |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2904 const char kEnableEhvInputName[] = | 2917 const char kEnableEhvInputName[] = |
2905 "Emoji, handwriting and voice input on opt-in IME menu"; | 2918 "Emoji, handwriting and voice input on opt-in IME menu"; |
2906 | 2919 |
2907 const char kEnableEhvInputDescription[] = | 2920 const char kEnableEhvInputDescription[] = |
2908 "Enable access to emoji, handwriting and voice input form opt-in IME " | 2921 "Enable access to emoji, handwriting and voice input form opt-in IME " |
2909 "menu."; | 2922 "menu."; |
2910 | 2923 |
2911 #endif // #if defined(OS_CHROMEOS) | 2924 #endif // #if defined(OS_CHROMEOS) |
2912 | 2925 |
2913 } // namespace flag_descriptions | 2926 } // namespace flag_descriptions |
OLD | NEW |