Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: components/autofill/content/browser/wallet/full_wallet.h

Issue 137723008: Remove DataModelWrapper from android build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/autofill/content/browser/wallet/full_wallet.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | components/autofill/content/browser/wallet/full_wallet.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698