diff options
Diffstat (limited to 'chrome/browser/autofill/wallet/wallet_service_url.h')
-rw-r--r-- | chrome/browser/autofill/wallet/wallet_service_url.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/chrome/browser/autofill/wallet/wallet_service_url.h b/chrome/browser/autofill/wallet/wallet_service_url.h new file mode 100644 index 0000000..e33bae8 --- /dev/null +++ b/chrome/browser/autofill/wallet/wallet_service_url.h @@ -0,0 +1,23 @@ +// 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. + +#ifndef CHROME_BROWSER_AUTOFILL_WALLET_WALLET_SERVICE_URL_H_ +#define CHROME_BROWSER_AUTOFILL_WALLET_WALLET_SERVICE_URL_H_ + +class GURL; + +namespace wallet { + +extern const char kApiKey[]; +GURL GetGetWalletItemsUrl(); +GURL GetGetFullWalletUrl(); +GURL GetAcceptLegalDocumentsUrl(); +GURL GetSecureUrl(); +GURL GetSendStatusUrl(); +GURL GetSaveToWalletUrl(); + +} // namespace wallet + +#endif // CHROME_BROWSER_AUTOFILL_WALLET_WALLET_SERVICE_URL_H_ + |