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
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_
6 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_
11 // All switches in alphabetical order. The switches should be documented
12 // alongside the definition of their values in the .cc file.
13 extern const char kDisableCreditCardScan
[];
14 extern const char kDisableFillOnAccountSelect
[];
15 extern const char kDisablePasswordGeneration
[];
16 extern const char kDisableSingleClickAutofill
[];
17 extern const char kEnableCreditCardScan
[];
18 extern const char kEnableFillOnAccountSelect
[];
19 extern const char kEnableFillOnAccountSelectNoHighlighting
[];
20 extern const char kEnablePasswordGeneration
[];
21 extern const char kEnablePasswordSaveOnInPageNavigation
[];
22 extern const char kEnableSingleClickAutofill
[];
23 extern const char kIgnoreAutocompleteOffForAutofill
[];
24 extern const char kLocalHeuristicsOnlyForPasswordGeneration
[];
25 extern const char kRespectAutocompleteOffForAutofill
[];
26 extern const char kShowAutofillTypePredictions
[];
27 extern const char kWalletSecureServiceUrl
[];
28 extern const char kWalletServiceUrl
[];
29 extern const char kWalletServiceUseSandbox
[];
31 } // namespace switches
32 } // namespace autofill
34 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_