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

Side by Side Diff: components/autofill/core/common/autofill_switches.cc

Issue 2035143002: Basic implementation of showing password fill dialog on page load (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Cleanup and tests Created 4 years, 6 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "components/autofill/core/common/autofill_switches.h" 6 #include "components/autofill/core/common/autofill_switches.h"
7 7
8 namespace autofill { 8 namespace autofill {
9 namespace switches { 9 namespace switches {
10 10
(...skipping 26 matching lines...) Expand all
37 const char kDisableSingleClickAutofill[] = "disable-single-click-autofill"; 37 const char kDisableSingleClickAutofill[] = "disable-single-click-autofill";
38 38
39 // Enables using device's camera to scan a new credit card when filling out a 39 // Enables using device's camera to scan a new credit card when filling out a
40 // credit card form. 40 // credit card form.
41 const char kEnableCreditCardScan[] = "enable-credit-card-scan"; 41 const char kEnableCreditCardScan[] = "enable-credit-card-scan";
42 42
43 // Enables the experiment for the password manager to only fill on account 43 // Enables the experiment for the password manager to only fill on account
44 // selection, rather than autofilling on page load, with highlighting of fields. 44 // selection, rather than autofilling on page load, with highlighting of fields.
45 const char kEnableFillOnAccountSelect[] = "enable-fill-on-account-select"; 45 const char kEnableFillOnAccountSelect[] = "enable-fill-on-account-select";
46 46
47 // Enables the experiment for the password manager to only fill on account
48 // selection, rather than autofilling on page load, with no highlighting of
49 // fields.
50 const char kEnableFillOnAccountSelectNoHighlighting[] =
51 "enable-fill-on-account-select-no-highlighting";
52
53 // Enables the experimental Full Form Autofill on iOS feature. 47 // Enables the experimental Full Form Autofill on iOS feature.
54 const char kEnableFullFormAutofillIOS[] = "enable-full-form-autofill-ios"; 48 const char kEnableFullFormAutofillIOS[] = "enable-full-form-autofill-ios";
55 49
56 // Force showing the local save checkbox in the autofill dialog box for getting 50 // Force showing the local save checkbox in the autofill dialog box for getting
57 // the full credit card number for a wallet card. 51 // the full credit card number for a wallet card.
58 const char kEnableOfferStoreUnmaskedWalletCards[] = 52 const char kEnableOfferStoreUnmaskedWalletCards[] =
59 "enable-offer-store-unmasked-wallet-cards"; 53 "enable-offer-store-unmasked-wallet-cards";
60 54
61 // Enables offering to upload credit cards. 55 // Enables offering to upload credit cards.
62 const char kEnableOfferUploadCreditCards[] = "enable-offer-upload-credit-cards"; 56 const char kEnableOfferUploadCreditCards[] = "enable-offer-upload-credit-cards";
(...skipping 29 matching lines...) Expand all
92 const char kDisableAccessorySuggestionView[] = 86 const char kDisableAccessorySuggestionView[] =
93 "disable-autofill-keyboard-accessory-view"; 87 "disable-autofill-keyboard-accessory-view";
94 88
95 // Enables showing suggestions in a keyboard accessory view. 89 // Enables showing suggestions in a keyboard accessory view.
96 const char kEnableAccessorySuggestionView[] = 90 const char kEnableAccessorySuggestionView[] =
97 "enable-autofill-keyboard-accessory-view"; 91 "enable-autofill-keyboard-accessory-view";
98 #endif // defined(OS_ANDROID) 92 #endif // defined(OS_ANDROID)
99 93
100 } // namespace switches 94 } // namespace switches
101 } // namespace autofill 95 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698