| 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 namespace autofill { |   8 namespace autofill { | 
|   9 namespace switches { |   9 namespace switches { | 
|  10  |  10  | 
|  11 // All switches in alphabetical order. The switches should be documented |  11 // All switches in alphabetical order. The switches should be documented | 
|  12 // alongside the definition of their values in the .cc file. |  12 // alongside the definition of their values in the .cc file. | 
|  13 extern const char kDisableCreditCardScan[]; |  13 extern const char kDisableCreditCardScan[]; | 
|  14 extern const char kDisableFillOnAccountSelect[]; |  14 extern const char kDisableFillOnAccountSelect[]; | 
|  15 extern const char kDisableFullFormAutofillIOS[]; |  15 extern const char kDisableFullFormAutofillIOS[]; | 
|  16 extern const char kDisableOfferStoreUnmaskedWalletCards[]; |  16 extern const char kDisableOfferStoreUnmaskedWalletCards[]; | 
|  17 extern const char kDisablePasswordGeneration[]; |  17 extern const char kDisablePasswordGeneration[]; | 
|  18 extern const char kDisableSingleClickAutofill[]; |  18 extern const char kDisableSingleClickAutofill[]; | 
|  19 extern const char kEnableAccessorySuggestionView[]; |  19 extern const char kEnableAccessorySuggestionView[]; | 
|  20 extern const char kEnableCreditCardScan[]; |  20 extern const char kEnableCreditCardScan[]; | 
|  21 extern const char kEnableFillOnAccountSelect[]; |  21 extern const char kEnableFillOnAccountSelect[]; | 
|  22 extern const char kEnableFillOnAccountSelectNoHighlighting[]; |  22 extern const char kEnableFillOnAccountSelectNoHighlighting[]; | 
|  23 extern const char kEnableFullFormAutofillIOS[]; |  23 extern const char kEnableFullFormAutofillIOS[]; | 
|  24 extern const char kEnableOfferStoreUnmaskedWalletCards[]; |  24 extern const char kEnableOfferStoreUnmaskedWalletCards[]; | 
|  25 extern const char kEnablePasswordGeneration[]; |  25 extern const char kEnablePasswordGeneration[]; | 
|  26 extern const char kEnableSingleClickAutofill[]; |  26 extern const char kEnableSingleClickAutofill[]; | 
 |  27 extern const char kEnableSuggestionsWithSubstringMatch[]; | 
|  27 extern const char kEnableWalletMetadataSync[]; |  28 extern const char kEnableWalletMetadataSync[]; | 
|  28 extern const char kIgnoreAutocompleteOffForAutofill[]; |  29 extern const char kIgnoreAutocompleteOffForAutofill[]; | 
|  29 extern const char kLocalHeuristicsOnlyForPasswordGeneration[]; |  30 extern const char kLocalHeuristicsOnlyForPasswordGeneration[]; | 
|  30 extern const char kShowAutofillTypePredictions[]; |  31 extern const char kShowAutofillTypePredictions[]; | 
|  31 extern const char kWalletSecureServiceUrl[]; |  32 extern const char kWalletSecureServiceUrl[]; | 
|  32 extern const char kWalletServiceUrl[]; |  33 extern const char kWalletServiceUrl[]; | 
|  33 extern const char kWalletServiceUseSandbox[]; |  34 extern const char kWalletServiceUseSandbox[]; | 
|  34  |  35  | 
|  35 }  // namespace switches |  36 }  // namespace switches | 
|  36 }  // namespace autofill |  37 }  // namespace autofill | 
|  37  |  38  | 
|  38 #endif  // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ |  39 #endif  // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ | 
| OLD | NEW |