| 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 // Flag used to tell Chrome the Autochecout whitelist url. | |
| 11 const char kAutocheckoutWhitelistUrl[] = "autocheckout-whitelist-url"; | |
| 12 | |
| 13 // Flag used to tell Chrome the base url of the Autofill service. | 10 // Flag used to tell Chrome the base url of the Autofill service. |
| 14 const char kAutofillServiceUrl[] = "autofill-service-url"; | 11 const char kAutofillServiceUrl[] = "autofill-service-url"; |
| 15 | 12 |
| 16 // Bypass autocheckout whitelist check, so all sites are enabled. | |
| 17 const char kBypassAutocheckoutWhitelist[] = "bypass-autocheckout-whitelist"; | |
| 18 | |
| 19 // Disables an interactive autocomplete UI. See kEnableInteractiveAutocomplete | 13 // Disables an interactive autocomplete UI. See kEnableInteractiveAutocomplete |
| 20 // for a description. | 14 // for a description. |
| 21 const char kDisableInteractiveAutocomplete[] = | 15 const char kDisableInteractiveAutocomplete[] = |
| 22 "disable-interactive-autocomplete"; | 16 "disable-interactive-autocomplete"; |
| 23 | 17 |
| 24 // Enable autofill for new elements like checkboxes. crbug.com/157636 | 18 // Enable autofill for new elements like checkboxes. crbug.com/157636 |
| 25 const char kEnableExperimentalFormFilling[] = | 19 const char kEnableExperimentalFormFilling[] = |
| 26 "enable-experimental-form-filling"; | 20 "enable-experimental-form-filling"; |
| 27 | 21 |
| 28 // Enables an interactive autocomplete UI and a way to invoke this UI from | 22 // Enables an interactive autocomplete UI and a way to invoke this UI from |
| (...skipping 11 matching lines...) Expand all Loading... |
| 40 // Service URL for Online Wallet service. Used as the base url for Online Wallet | 34 // Service URL for Online Wallet service. Used as the base url for Online Wallet |
| 41 // API calls. | 35 // API calls. |
| 42 const char kWalletServiceUrl[] = "wallet-service-url"; | 36 const char kWalletServiceUrl[] = "wallet-service-url"; |
| 43 | 37 |
| 44 // Enable production Online Wallet service. If this flag is not set, the sandbox | 38 // Enable production Online Wallet service. If this flag is not set, the sandbox |
| 45 // service will be used. | 39 // service will be used. |
| 46 const char kWalletServiceUseProd[] = "wallet-service-use-prod"; | 40 const char kWalletServiceUseProd[] = "wallet-service-use-prod"; |
| 47 | 41 |
| 48 } // namespace switches | 42 } // namespace switches |
| 49 } // namespace autofill | 43 } // namespace autofill |
| OLD | NEW |