OLD | NEW |
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 "components/autofill/core/common/autofill_switches.h" | 5 #include "components/autofill/core/common/autofill_switches.h" |
6 | 6 |
7 namespace autofill { | 7 namespace autofill { |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // Disables using device's camera to scan a new credit card when filling out a | 10 // Disables using device's camera to scan a new credit card when filling out a |
(...skipping 10 matching lines...) Expand all Loading... |
21 const char kDisableOfferStoreUnmaskedWalletCards[] = | 21 const char kDisableOfferStoreUnmaskedWalletCards[] = |
22 "disable-offer-store-unmasked-wallet-cards"; | 22 "disable-offer-store-unmasked-wallet-cards"; |
23 | 23 |
24 // Disables password generation when we detect that the user is going through | 24 // Disables password generation when we detect that the user is going through |
25 // account creation. | 25 // account creation. |
26 const char kDisablePasswordGeneration[] = "disable-password-generation"; | 26 const char kDisablePasswordGeneration[] = "disable-password-generation"; |
27 | 27 |
28 // The "disable" flag for kEnableSingleClickAutofill. | 28 // The "disable" flag for kEnableSingleClickAutofill. |
29 const char kDisableSingleClickAutofill[] = "disable-single-click-autofill"; | 29 const char kDisableSingleClickAutofill[] = "disable-single-click-autofill"; |
30 | 30 |
| 31 const char kEnableAccessorySuggestionView[] = |
| 32 "enable-autofill-keyboard-accessory-view"; |
| 33 |
31 // Enables using device's camera to scan a new credit card when filling out a | 34 // Enables using device's camera to scan a new credit card when filling out a |
32 // credit card form. | 35 // credit card form. |
33 const char kEnableCreditCardScan[] = "enable-credit-card-scan"; | 36 const char kEnableCreditCardScan[] = "enable-credit-card-scan"; |
34 | 37 |
35 // Enables the experiment for the password manager to only fill on account | 38 // Enables the experiment for the password manager to only fill on account |
36 // selection, rather than autofilling on page load, with highlighting of fields. | 39 // selection, rather than autofilling on page load, with highlighting of fields. |
37 const char kEnableFillOnAccountSelect[] = "enable-fill-on-account-select"; | 40 const char kEnableFillOnAccountSelect[] = "enable-fill-on-account-select"; |
38 | 41 |
39 // Enables the experiment for the password manager to only fill on account | 42 // Enables the experiment for the password manager to only fill on account |
40 // selection, rather than autofilling on page load, with no highlighting of | 43 // selection, rather than autofilling on page load, with no highlighting of |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 79 |
77 // Service URL for Online Wallet service. Used as the base url for Online Wallet | 80 // Service URL for Online Wallet service. Used as the base url for Online Wallet |
78 // API calls. | 81 // API calls. |
79 const char kWalletServiceUrl[] = "wallet-service-url"; | 82 const char kWalletServiceUrl[] = "wallet-service-url"; |
80 | 83 |
81 // Use the sandbox Online Wallet service URL (for developer testing). | 84 // Use the sandbox Online Wallet service URL (for developer testing). |
82 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; | 85 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; |
83 | 86 |
84 } // namespace switches | 87 } // namespace switches |
85 } // namespace autofill | 88 } // namespace autofill |
OLD | NEW |