| Index: components/autofill/content/browser/wallet/wallet_address.h
|
| diff --git a/components/autofill/content/browser/wallet/wallet_address.h b/components/autofill/content/browser/wallet/wallet_address.h
|
| index cead6cc5d4c6814c8f12484d8a35e3c7df361bb7..65d800a101052e74709ec593a7220b0922f804c6 100644
|
| --- a/components/autofill/content/browser/wallet/wallet_address.h
|
| +++ b/components/autofill/content/browser/wallet/wallet_address.h
|
| @@ -10,6 +10,7 @@
|
| #include "base/basictypes.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string16.h"
|
| +#include "components/autofill/core/browser/phone_number_i18n.h"
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| @@ -90,6 +91,10 @@ class Address {
|
| // to the user together with DisplayName().
|
| base::string16 DisplayNameDetail() const;
|
|
|
| + // Returns the phone number as a string that is suitable for display to the
|
| + // user.
|
| + base::string16 DisplayPhoneNumber() const;
|
| +
|
| // Returns data appropriate for |type|.
|
| base::string16 GetInfo(const AutofillType& type,
|
| const std::string& app_locale) const;
|
| @@ -185,6 +190,9 @@ class Address {
|
| // this class before being set; see http://code.google.com/p/libphonenumber/.
|
| base::string16 phone_number_;
|
|
|
| + // The parsed phone number.
|
| + i18n::PhoneObject phone_object_;
|
| +
|
| // Externalized Online Wallet id for this address.
|
| std::string object_id_;
|
|
|
|
|