| 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 "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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "ignore-autocomplete-off-autofill"; | 77 "ignore-autocomplete-off-autofill"; |
| 78 | 78 |
| 79 // Removes the requirement that we recieved a ping from the autofill servers | 79 // Removes the requirement that we recieved a ping from the autofill servers |
| 80 // and that the user doesn't have the given form blacklisted. Used in testing. | 80 // and that the user doesn't have the given form blacklisted. Used in testing. |
| 81 const char kLocalHeuristicsOnlyForPasswordGeneration[] = | 81 const char kLocalHeuristicsOnlyForPasswordGeneration[] = |
| 82 "local-heuristics-only-for-password-generation"; | 82 "local-heuristics-only-for-password-generation"; |
| 83 | 83 |
| 84 // Annotates forms with Autofill field type predictions. | 84 // Annotates forms with Autofill field type predictions. |
| 85 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; | 85 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; |
| 86 | 86 |
| 87 // Secure service URL for Online Wallet service. Used as the base url to escrow | |
| 88 // credit card numbers. | |
| 89 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; | |
| 90 | |
| 91 // Service URL for Online Wallet service. Used as the base url for Online Wallet | |
| 92 // API calls. | |
| 93 const char kWalletServiceUrl[] = "wallet-service-url"; | |
| 94 | |
| 95 // Use the sandbox Online Wallet service URL (for developer testing). | 87 // Use the sandbox Online Wallet service URL (for developer testing). |
| 96 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; | 88 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; |
| 97 | 89 |
| 98 #if defined(OS_ANDROID) | 90 #if defined(OS_ANDROID) |
| 99 // Disables showing suggestions in a keyboard accessory view. | 91 // Disables showing suggestions in a keyboard accessory view. |
| 100 const char kDisableAccessorySuggestionView[] = | 92 const char kDisableAccessorySuggestionView[] = |
| 101 "disable-autofill-keyboard-accessory-view"; | 93 "disable-autofill-keyboard-accessory-view"; |
| 102 | 94 |
| 103 // Enables showing suggestions in a keyboard accessory view. | 95 // Enables showing suggestions in a keyboard accessory view. |
| 104 const char kEnableAccessorySuggestionView[] = | 96 const char kEnableAccessorySuggestionView[] = |
| 105 "enable-autofill-keyboard-accessory-view"; | 97 "enable-autofill-keyboard-accessory-view"; |
| 106 #endif // defined(OS_ANDROID) | 98 #endif // defined(OS_ANDROID) |
| 107 | 99 |
| 108 } // namespace switches | 100 } // namespace switches |
| 109 } // namespace autofill | 101 } // namespace autofill |
| OLD | NEW |