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 kDisableFullFormAutofillIOS[]; | |
17 extern const char kDisableOfferStoreUnmaskedWalletCards[]; | 16 extern const char kDisableOfferStoreUnmaskedWalletCards[]; |
18 extern const char kDisableOfferUploadCreditCards[]; | 17 extern const char kDisableOfferUploadCreditCards[]; |
19 extern const char kDisablePasswordGeneration[]; | 18 extern const char kDisablePasswordGeneration[]; |
20 extern const char kDisableSingleClickAutofill[]; | 19 extern const char kDisableSingleClickAutofill[]; |
21 extern const char kEnableCreditCardScan[]; | 20 extern const char kEnableCreditCardScan[]; |
22 extern const char kEnableFullFormAutofillIOS[]; | |
23 extern const char kEnableOfferStoreUnmaskedWalletCards[]; | 21 extern const char kEnableOfferStoreUnmaskedWalletCards[]; |
24 extern const char kEnableOfferUploadCreditCards[]; | 22 extern const char kEnableOfferUploadCreditCards[]; |
25 extern const char kEnablePasswordGeneration[]; | 23 extern const char kEnablePasswordGeneration[]; |
26 extern const char kEnableSingleClickAutofill[]; | 24 extern const char kEnableSingleClickAutofill[]; |
27 extern const char kEnableSuggestionsWithSubstringMatch[]; | 25 extern const char kEnableSuggestionsWithSubstringMatch[]; |
28 extern const char kIgnoreAutocompleteOffForAutofill[]; | 26 extern const char kIgnoreAutocompleteOffForAutofill[]; |
29 extern const char kLocalHeuristicsOnlyForPasswordGeneration[]; | 27 extern const char kLocalHeuristicsOnlyForPasswordGeneration[]; |
30 extern const char kShowAutofillTypePredictions[]; | 28 extern const char kShowAutofillTypePredictions[]; |
31 extern const char kWalletServiceUseSandbox[]; | 29 extern const char kWalletServiceUseSandbox[]; |
32 | 30 |
33 #if defined(OS_ANDROID) | 31 #if defined(OS_ANDROID) |
34 extern const char kDisableAccessorySuggestionView[]; | 32 extern const char kDisableAccessorySuggestionView[]; |
35 extern const char kEnableAccessorySuggestionView[]; | 33 extern const char kEnableAccessorySuggestionView[]; |
36 #endif // defined(OS_ANDROID) | 34 #endif // defined(OS_ANDROID) |
37 | 35 |
38 } // namespace switches | 36 } // namespace switches |
39 } // namespace autofill | 37 } // namespace autofill |
40 | 38 |
41 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ | 39 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ |
OLD | NEW |