Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: components/autofill/core/common/autofill_switches.h

Issue 2200333002: Remove flags for controlling credit card scanner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove autofill_switches.h include Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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[];
16 extern const char kDisableOfferStoreUnmaskedWalletCards[]; 15 extern const char kDisableOfferStoreUnmaskedWalletCards[];
17 extern const char kDisableOfferUploadCreditCards[]; 16 extern const char kDisableOfferUploadCreditCards[];
18 extern const char kDisablePasswordGeneration[]; 17 extern const char kDisablePasswordGeneration[];
19 extern const char kDisableSingleClickAutofill[]; 18 extern const char kDisableSingleClickAutofill[];
20 extern const char kEnableCreditCardScan[];
21 extern const char kEnableOfferStoreUnmaskedWalletCards[]; 19 extern const char kEnableOfferStoreUnmaskedWalletCards[];
22 extern const char kEnableOfferUploadCreditCards[]; 20 extern const char kEnableOfferUploadCreditCards[];
23 extern const char kEnablePasswordGeneration[]; 21 extern const char kEnablePasswordGeneration[];
24 extern const char kEnableSingleClickAutofill[]; 22 extern const char kEnableSingleClickAutofill[];
25 extern const char kEnableSuggestionsWithSubstringMatch[]; 23 extern const char kEnableSuggestionsWithSubstringMatch[];
26 extern const char kIgnoreAutocompleteOffForAutofill[]; 24 extern const char kIgnoreAutocompleteOffForAutofill[];
27 extern const char kLocalHeuristicsOnlyForPasswordGeneration[]; 25 extern const char kLocalHeuristicsOnlyForPasswordGeneration[];
28 extern const char kShowAutofillTypePredictions[]; 26 extern const char kShowAutofillTypePredictions[];
29 extern const char kWalletServiceUseSandbox[]; 27 extern const char kWalletServiceUseSandbox[];
30 28
31 #if defined(OS_ANDROID) 29 #if defined(OS_ANDROID)
32 extern const char kDisableAccessorySuggestionView[]; 30 extern const char kDisableAccessorySuggestionView[];
33 extern const char kEnableAccessorySuggestionView[]; 31 extern const char kEnableAccessorySuggestionView[];
34 #endif // defined(OS_ANDROID) 32 #endif // defined(OS_ANDROID)
35 33
36 } // namespace switches 34 } // namespace switches
37 } // namespace autofill 35 } // namespace autofill
38 36
39 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_ 37 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698