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 // Flag used to tell Chrome the base url of the Autofill service. | 10 // Flag used to tell Chrome the base url of the Autofill service. |
(...skipping 17 matching lines...) Expand all Loading... |
28 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; | 28 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; |
29 | 29 |
30 // Secure service URL for Online Wallet service. Used as the base url to escrow | 30 // Secure service URL for Online Wallet service. Used as the base url to escrow |
31 // credit card numbers. | 31 // credit card numbers. |
32 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; | 32 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; |
33 | 33 |
34 // Service URL for Online Wallet service. Used as the base url for Online Wallet | 34 // Service URL for Online Wallet service. Used as the base url for Online Wallet |
35 // API calls. | 35 // API calls. |
36 const char kWalletServiceUrl[] = "wallet-service-url"; | 36 const char kWalletServiceUrl[] = "wallet-service-url"; |
37 | 37 |
38 // Enable production Online Wallet service. If this flag is not set, the sandbox | 38 // Use the sandbox Online Wallet service URL (for developer testing). |
39 // service will be used. | 39 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; |
40 const char kWalletServiceUseProd[] = "wallet-service-use-prod"; | |
41 | 40 |
42 } // namespace switches | 41 } // namespace switches |
43 } // namespace autofill | 42 } // namespace autofill |
OLD | NEW |