| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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. | 59 // Annotates forms and fields with Autofill signatures. |
| 60 const char kShowAutofillSignatures[] = "show-autofill-signatures"; | 60 const char kShowAutofillSignatures[] = "show-autofill-signatures"; |
| 61 | 61 |
| 62 // Use the sandbox Online Wallet service URL (for developer testing). | 62 // Use the sandbox Online Wallet service URL (for developer testing). |
| 63 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; | 63 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; |
| 64 | 64 |
| 65 #if defined(OS_ANDROID) | |
| 66 // Disables showing suggestions in a keyboard accessory view. | |
| 67 const char kDisableAccessorySuggestionView[] = | |
| 68 "disable-autofill-keyboard-accessory-view"; | |
| 69 | |
| 70 // Enables showing suggestions in a keyboard accessory view. | |
| 71 const char kEnableAccessorySuggestionView[] = | |
| 72 "enable-autofill-keyboard-accessory-view"; | |
| 73 #endif // defined(OS_ANDROID) | |
| 74 | |
| 75 } // namespace switches | 65 } // namespace switches |
| 76 } // namespace autofill | 66 } // namespace autofill |
| OLD | NEW |