| Index: components/autofill/content/browser/wallet/full_wallet.h
|
| diff --git a/components/autofill/content/browser/wallet/full_wallet.h b/components/autofill/content/browser/wallet/full_wallet.h
|
| index e3d185d9f6fb96e7f0cfa427535386272df5e8b9..9a8607bac08337f3ac7a7c65b0e68226949711b9 100644
|
| --- a/components/autofill/content/browser/wallet/full_wallet.h
|
| +++ b/components/autofill/content/browser/wallet/full_wallet.h
|
| @@ -52,7 +52,8 @@ class FullWallet {
|
| scoped_ptr<Address> shipping_address);
|
|
|
| // Returns corresponding data for |type|.
|
| - base::string16 GetInfo(const AutofillType& type);
|
| + base::string16 GetInfo(const std::string& app_locale,
|
| + const AutofillType& type);
|
|
|
| // Whether or not |action| is in |required_actions_|.
|
| bool HasRequiredAction(RequiredAction action) const;
|
| @@ -61,6 +62,10 @@ class FullWallet {
|
| // like this "Visa - 4111".
|
| base::string16 TypeAndLastFourDigits();
|
|
|
| + // Decrypts and returns the primary account number (PAN) using the generated
|
| + // one time pad, |one_time_pad_|.
|
| + const std::string& GetPan();
|
| +
|
| bool operator==(const FullWallet& other) const;
|
| bool operator!=(const FullWallet& other) const;
|
|
|
| @@ -103,10 +108,6 @@ class FullWallet {
|
| // Decrypts both |pan_| and |cvn_|.
|
| void DecryptCardInfo();
|
|
|
| - // Decrypts and returns the primary account number (PAN) using the generated
|
| - // one time pad, |one_time_pad_|.
|
| - const std::string& GetPan();
|
| -
|
| // Decrypts and returns the card verification number (CVN) using the generated
|
| // one time pad, |one_time_pad_|.
|
| const std::string& GetCvn();
|
|
|