| 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/shared/autofill_switches.h" | 5 #include "components/autofill/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 Autochecout whitelist url. | 10 // Flag used to tell Chrome the Autochecout whitelist url. |
| 11 const char kAutocheckoutWhitelistUrl[] = "autocheckout-whitelist-url"; | 11 const char kAutocheckoutWhitelistUrl[] = "autocheckout-whitelist-url"; |
| 12 | 12 |
| 13 // Flag used to tell Chrome the base url of the Autofill service. | 13 // Flag used to tell Chrome the base url of the Autofill service. |
| 14 const char kAutofillServiceUrl[] = "autofill-service-url"; | 14 const char kAutofillServiceUrl[] = "autofill-service-url"; |
| 15 | 15 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 40 // Service URL for Online Wallet service. Used as the base url for Online Wallet | 40 // Service URL for Online Wallet service. Used as the base url for Online Wallet |
| 41 // API calls. | 41 // API calls. |
| 42 const char kWalletServiceUrl[] = "wallet-service-url"; | 42 const char kWalletServiceUrl[] = "wallet-service-url"; |
| 43 | 43 |
| 44 // Enable production Online Wallet service. If this flag is not set, the sandbox | 44 // Enable production Online Wallet service. If this flag is not set, the sandbox |
| 45 // service will be used. | 45 // service will be used. |
| 46 const char kWalletServiceUseProd[] = "wallet-service-use-prod"; | 46 const char kWalletServiceUseProd[] = "wallet-service-use-prod"; |
| 47 | 47 |
| 48 } // namespace switches | 48 } // namespace switches |
| 49 } // namespace autofill | 49 } // namespace autofill |
| OLD | NEW |