| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "ignore-autocomplete-off-autofill"; | 49 "ignore-autocomplete-off-autofill"; |
| 50 | 50 |
| 51 // Removes the requirement that we recieved a ping from the autofill servers | 51 // Removes the requirement that we recieved a ping from the autofill servers |
| 52 // and that the user doesn't have the given form blacklisted. Used in testing. | 52 // and that the user doesn't have the given form blacklisted. Used in testing. |
| 53 const char kLocalHeuristicsOnlyForPasswordGeneration[] = | 53 const char kLocalHeuristicsOnlyForPasswordGeneration[] = |
| 54 "local-heuristics-only-for-password-generation"; | 54 "local-heuristics-only-for-password-generation"; |
| 55 | 55 |
| 56 // Annotates forms with Autofill field type predictions. | 56 // Annotates forms with Autofill field type predictions. |
| 57 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; | 57 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; |
| 58 | 58 |
| 59 // Annotates forms and fields with Autofill signatures. |
| 60 const char kShowAutofillSignatures[] = "show-autofill-signatures"; |
| 61 |
| 59 // Use the sandbox Online Wallet service URL (for developer testing). | 62 // Use the sandbox Online Wallet service URL (for developer testing). |
| 60 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; | 63 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; |
| 61 | 64 |
| 62 #if defined(OS_ANDROID) | 65 #if defined(OS_ANDROID) |
| 63 // Disables showing suggestions in a keyboard accessory view. | 66 // Disables showing suggestions in a keyboard accessory view. |
| 64 const char kDisableAccessorySuggestionView[] = | 67 const char kDisableAccessorySuggestionView[] = |
| 65 "disable-autofill-keyboard-accessory-view"; | 68 "disable-autofill-keyboard-accessory-view"; |
| 66 | 69 |
| 67 // Enables showing suggestions in a keyboard accessory view. | 70 // Enables showing suggestions in a keyboard accessory view. |
| 68 const char kEnableAccessorySuggestionView[] = | 71 const char kEnableAccessorySuggestionView[] = |
| 69 "enable-autofill-keyboard-accessory-view"; | 72 "enable-autofill-keyboard-accessory-view"; |
| 70 #endif // defined(OS_ANDROID) | 73 #endif // defined(OS_ANDROID) |
| 71 | 74 |
| 72 } // namespace switches | 75 } // namespace switches |
| 73 } // namespace autofill | 76 } // namespace autofill |
| OLD | NEW |