| 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 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ |
| 7 | 7 |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 | 9 |
| 10 namespace autofill { | 10 namespace autofill { |
| 11 namespace switches { | 11 namespace switches { |
| 12 | 12 |
| 13 // All switches in alphabetical order. The switches should be documented | 13 // All switches in alphabetical order. The switches should be documented |
| 14 // alongside the definition of their values in the .cc file. | 14 // alongside the definition of their values in the .cc file. |
| 15 extern const char kDisableCreditCardScan[]; | 15 extern const char kDisableCreditCardScan[]; |
| 16 extern const char kDisableFillOnAccountSelect[]; | 16 extern const char kDisableFillOnAccountSelect[]; |
| 17 extern const char kDisableFullFormAutofillIOS[]; | 17 extern const char kDisableFullFormAutofillIOS[]; |
| 18 extern const char kDisableOfferStoreUnmaskedWalletCards[]; | 18 extern const char kDisableOfferStoreUnmaskedWalletCards[]; |
| 19 extern const char kDisableOfferUploadCreditCards[]; | 19 extern const char kDisableOfferUploadCreditCards[]; |
| 20 extern const char kDisablePasswordGeneration[]; | 20 extern const char kDisablePasswordGeneration[]; |
| 21 extern const char kDisableSaveCardBubble[]; | |
| 22 extern const char kDisableSingleClickAutofill[]; | 21 extern const char kDisableSingleClickAutofill[]; |
| 23 extern const char kEnableCreditCardScan[]; | 22 extern const char kEnableCreditCardScan[]; |
| 24 extern const char kEnableFillOnAccountSelect[]; | 23 extern const char kEnableFillOnAccountSelect[]; |
| 25 extern const char kEnableFillOnAccountSelectNoHighlighting[]; | 24 extern const char kEnableFillOnAccountSelectNoHighlighting[]; |
| 26 extern const char kEnableFullFormAutofillIOS[]; | 25 extern const char kEnableFullFormAutofillIOS[]; |
| 27 extern const char kEnableOfferStoreUnmaskedWalletCards[]; | 26 extern const char kEnableOfferStoreUnmaskedWalletCards[]; |
| 28 extern const char kEnableOfferUploadCreditCards[]; | 27 extern const char kEnableOfferUploadCreditCards[]; |
| 29 extern const char kEnablePasswordGeneration[]; | 28 extern const char kEnablePasswordGeneration[]; |
| 30 extern const char kEnableSaveCardBubble[]; | |
| 31 extern const char kEnableSingleClickAutofill[]; | 29 extern const char kEnableSingleClickAutofill[]; |
| 32 extern const char kEnableSuggestionsWithSubstringMatch[]; | 30 extern const char kEnableSuggestionsWithSubstringMatch[]; |
| 33 extern const char kIgnoreAutocompleteOffForAutofill[]; | 31 extern const char kIgnoreAutocompleteOffForAutofill[]; |
| 34 extern const char kLocalHeuristicsOnlyForPasswordGeneration[]; | 32 extern const char kLocalHeuristicsOnlyForPasswordGeneration[]; |
| 35 extern const char kShowAutofillTypePredictions[]; | 33 extern const char kShowAutofillTypePredictions[]; |
| 36 extern const char kWalletSecureServiceUrl[]; | 34 extern const char kWalletSecureServiceUrl[]; |
| 37 extern const char kWalletServiceUrl[]; | 35 extern const char kWalletServiceUrl[]; |
| 38 extern const char kWalletServiceUseSandbox[]; | 36 extern const char kWalletServiceUseSandbox[]; |
| 39 | 37 |
| 40 #if defined(OS_ANDROID) | 38 #if defined(OS_ANDROID) |
| 41 extern const char kDisableAccessorySuggestionView[]; | 39 extern const char kDisableAccessorySuggestionView[]; |
| 42 extern const char kEnableAccessorySuggestionView[]; | 40 extern const char kEnableAccessorySuggestionView[]; |
| 43 #endif // defined(OS_ANDROID) | 41 #endif // defined(OS_ANDROID) |
| 44 | 42 |
| 45 } // namespace switches | 43 } // namespace switches |
| 46 } // namespace autofill | 44 } // namespace autofill |
| 47 | 45 |
| 48 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ | 46 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ |
| OLD | NEW |