blob: fc106c15603d094a7608b5ee562e5bbc938fa104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// 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 COMPONENTS_AUTOFILL_BROWSER_WALLET_CART_H_
#define COMPONENTS_AUTOFILL_BROWSER_WALLET_CART_H_
#include <string>
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
namespace base {
class DictionaryValue;
}
namespace autofill {
namespace wallet {
// Container object for purchase data provided by the browser. The enclosed data
// is required to request a FullWallet from Online Wallet in order to set
// spending limits on the generated proxy card. If the actual amount is not
// available, the maximum allowable value should be used: $1850 USD. Online
// Wallet is designed to accept price information in addition to information
// about the items being purchased hence the name Cart.
class Cart {
public:
Cart(const std::string& total_price, const std::string& currency_code);
~Cart();
scoped_ptr<base::DictionaryValue> ToDictionary() const;
const std::string& total_price() const { return total_price_; }
const std::string& currency_code() const { return currency_code_; }
private:
// |total_price_| must be a formatted as a double with no more than two
// decimals, e.g. 100.99
std::string total_price_;
// |currency_code_| must be one of the ISO 4217 currency codes, e.g. USD.
std::string currency_code_;
DISALLOW_ASSIGN(Cart);
};
} // namespace wallet
} // namespace autofill
#endif // COMPONENTS_AUTOFILL_BROWSER_WALLET_CART_H_
|