Index: chrome/browser/autofill/wallet/wallet_service_url.cc |
diff --git a/chrome/browser/autofill/wallet/wallet_service_url.cc b/chrome/browser/autofill/wallet/wallet_service_url.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5ab740fb445d79038f078fff1df7ea13eb9097c2 |
--- /dev/null |
+++ b/chrome/browser/autofill/wallet/wallet_service_url.cc |
@@ -0,0 +1,60 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/autofill/wallet/wallet_service_url.h" |
+ |
+#include <string> |
+ |
+#include "base/command_line.h" |
+#include "chrome/common/chrome_switches.h" |
+#include "googleurl/src/gurl.h" |
+ |
+namespace { |
+ |
+const char kDefaultWalletServiceUrl[] = |
+ "https://wallet.google.com/online/v2/wallet/autocheckout/"; |
+ |
+const char kDefaultWalletSecureServiceUrl[] = |
+ "https://wallet.google.com/online-secure/temporarydata/cvv?s7e=cvv"; |
+ |
+GURL GetBaseWalletUrl() { |
+ const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
+ std::string baseWalletServiceUrl = command_line.GetSwitchValueASCII( |
+ switches::kWalletServiceUrl); |
+ return !baseWalletServiceUrl.empty() ? GURL(baseWalletServiceUrl) : |
+ GURL(kDefaultWalletServiceUrl); |
+} |
+ |
+} // anonymous namespace |
+ |
+// TODO(ahutter): This shouldn't live in this class. See |
+// http://crbug.com/164281. |
+const char wallet::kApiKey[] = "abcdefg"; |
+ |
+GURL wallet::GetGetWalletItemsUrl() { |
+ return GetBaseWalletUrl().Resolve("getWalletItemsJwtless"); |
+} |
+ |
+GURL wallet::GetGetFullWalletUrl() { |
+ return GetBaseWalletUrl().Resolve("getFullWalletJwtless"); |
+} |
+GURL wallet::GetAcceptLegalDocumentsUrl() { |
+ return GetBaseWalletUrl().Resolve("acceptLegalDocuments"); |
+} |
+ |
+GURL wallet::GetSendStatusUrl() { |
+ return GetBaseWalletUrl().Resolve("reportStatus"); |
+} |
+ |
+GURL wallet::GetSaveToWalletUrl() { |
+ return GetBaseWalletUrl().Resolve("saveToWallet"); |
+} |
+ |
+GURL wallet::GetSecureUrl() { |
+ const CommandLine& command_line = *CommandLine::ForCurrentProcess(); |
+ std::string walletSecureUrl = command_line.GetSwitchValueASCII( |
+ switches::kWalletSecureServiceUrl); |
+ return !walletSecureUrl.empty() ? GURL(walletSecureUrl) : |
+ GURL(kDefaultWalletSecureServiceUrl); |
+} |