OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ |
6 #define CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ | 6 #define CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/string16.h" | 10 #include "base/string16.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 virtual void GetPossibleFieldTypes(const string16& text, | 23 virtual void GetPossibleFieldTypes(const string16& text, |
24 FieldTypeSet* possible_types) const; | 24 FieldTypeSet* possible_types) const; |
25 virtual void FindInfoMatches(const AutoFillType& type, | 25 virtual void FindInfoMatches(const AutoFillType& type, |
26 const string16& info, | 26 const string16& info, |
27 std::vector<string16>* matched_text) const; | 27 std::vector<string16>* matched_text) const; |
28 virtual string16 GetFieldText(const AutoFillType& type) const; | 28 virtual string16 GetFieldText(const AutoFillType& type) const; |
29 virtual string16 GetPreviewText(const AutoFillType& type) const; | 29 virtual string16 GetPreviewText(const AutoFillType& type) const; |
30 virtual void SetInfo(const AutoFillType& type, const string16& value); | 30 virtual void SetInfo(const AutoFillType& type, const string16& value); |
31 const string16& Label() const { return label_; } | 31 const string16& Label() const { return label_; } |
32 | 32 |
| 33 // The number altered for display, for example: ******1234 |
| 34 string16 ObfuscatedNumber() const; |
33 // Credit card preview summary, for example: ******1234, Exp: 01/2020 | 35 // Credit card preview summary, for example: ******1234, Exp: 01/2020 |
34 string16 PreviewSummary() const; | 36 string16 PreviewSummary() const; |
35 | 37 |
36 const string16& billing_address() const { return billing_address_; } | 38 const string16& billing_address() const { return billing_address_; } |
37 const string16& shipping_address() const { return shipping_address_; } | 39 const string16& shipping_address() const { return shipping_address_; } |
38 int unique_id() const { return unique_id_; } | 40 int unique_id() const { return unique_id_; } |
39 | 41 |
40 // The caller should verify that the corresponding AutoFillProfile exists. If | 42 // The caller should verify that the corresponding AutoFillProfile exists. If |
41 // the shipping address should be the same as the billing address, send in an | 43 // the shipping address should be the same as the billing address, send in an |
42 // empty string to set_shipping_address. | 44 // empty string to set_shipping_address. |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 string16 shipping_address_; | 157 string16 shipping_address_; |
156 | 158 |
157 // The unique ID of this profile. | 159 // The unique ID of this profile. |
158 int unique_id_; | 160 int unique_id_; |
159 }; | 161 }; |
160 | 162 |
161 // So we can compare CreditCards with EXPECT_EQ(). | 163 // So we can compare CreditCards with EXPECT_EQ(). |
162 std::ostream& operator<<(std::ostream& os, const CreditCard& creditcard); | 164 std::ostream& operator<<(std::ostream& os, const CreditCard& creditcard); |
163 | 165 |
164 #endif // CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ | 166 #endif // CHROME_BROWSER_AUTOFILL_CREDIT_CARD_H_ |
OLD | NEW |