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 #include "components/autofill/core/common/autofill_switches.h" | 5 #include "components/autofill/core/common/autofill_switches.h" |
6 | 6 |
7 namespace autofill { | 7 namespace autofill { |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 // Disables using device's camera to scan a new credit card when filling out a | 10 // Disables using device's camera to scan a new credit card when filling out a |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 60 |
61 // Ignores autocomplete="off" for Autofill data (profiles + credit cards). | 61 // Ignores autocomplete="off" for Autofill data (profiles + credit cards). |
62 const char kIgnoreAutocompleteOffForAutofill[] = | 62 const char kIgnoreAutocompleteOffForAutofill[] = |
63 "ignore-autocomplete-off-autofill"; | 63 "ignore-autocomplete-off-autofill"; |
64 | 64 |
65 // Removes the requirement that we recieved a ping from the autofill servers | 65 // Removes the requirement that we recieved a ping from the autofill servers |
66 // and that the user doesn't have the given form blacklisted. Used in testing. | 66 // and that the user doesn't have the given form blacklisted. Used in testing. |
67 const char kLocalHeuristicsOnlyForPasswordGeneration[] = | 67 const char kLocalHeuristicsOnlyForPasswordGeneration[] = |
68 "local-heuristics-only-for-password-generation"; | 68 "local-heuristics-only-for-password-generation"; |
69 | 69 |
70 // The "disable" flag for kIgnoreAutocompleteOffForAutofill. | |
71 const char kRespectAutocompleteOffForAutofill[] = | |
72 "respect-autocomplete-off-autofill"; | |
73 | |
74 // Annotates forms with Autofill field type predictions. | 70 // Annotates forms with Autofill field type predictions. |
75 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; | 71 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; |
76 | 72 |
77 // Secure service URL for Online Wallet service. Used as the base url to escrow | 73 // Secure service URL for Online Wallet service. Used as the base url to escrow |
78 // credit card numbers. | 74 // credit card numbers. |
79 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; | 75 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; |
80 | 76 |
81 // Service URL for Online Wallet service. Used as the base url for Online Wallet | 77 // Service URL for Online Wallet service. Used as the base url for Online Wallet |
82 // API calls. | 78 // API calls. |
83 const char kWalletServiceUrl[] = "wallet-service-url"; | 79 const char kWalletServiceUrl[] = "wallet-service-url"; |
84 | 80 |
85 // Use the sandbox Online Wallet service URL (for developer testing). | 81 // Use the sandbox Online Wallet service URL (for developer testing). |
86 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; | 82 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; |
87 | 83 |
88 } // namespace switches | 84 } // namespace switches |
89 } // namespace autofill | 85 } // namespace autofill |
OLD | NEW |