summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/credit_card.h
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 06:31:18 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-10 06:31:18 +0000
commit6b44b58e2c0e2262c0a48344bd30215d8c06aed7 (patch)
tree3d48e8f560c8ee1a12062bd8c271d48bc09d95b1 /chrome/browser/autofill/credit_card.h
parent6eb6bb601716161c58f0ed647a705856df0a03ec (diff)
downloadchromium_src-6b44b58e2c0e2262c0a48344bd30215d8c06aed7.zip
chromium_src-6b44b58e2c0e2262c0a48344bd30215d8c06aed7.tar.gz
chromium_src-6b44b58e2c0e2262c0a48344bd30215d8c06aed7.tar.bz2
[Autofill] Rename GetInfo and SetInfo to GetRawInfo and SetRawInfo
This is part 1 of a multi-CL change to always read the application locale from an appropriate thread in the Autofill code. The next CL will rename GetCanonicalizedInfo and SetCanonicalizedInfo to GetInfo and SetInfo, and add a |locale| parameter to these methods. Subsequent CLs will migrate all Autofill code that currently access the locale to always access it from the UI thread. BUG=100845 TEST=none (pure refactoring) TBR=dhollowa@chromium.org, akalin@chromium.org, bauerb@chromium.org Review URL: https://chromiumcodereview.appspot.com/11360055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/credit_card.h')
-rw-r--r--chrome/browser/autofill/credit_card.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/autofill/credit_card.h b/chrome/browser/autofill/credit_card.h
index acfe491..7514a8e 100644
--- a/chrome/browser/autofill/credit_card.h
+++ b/chrome/browser/autofill/credit_card.h
@@ -24,8 +24,9 @@ class CreditCard : public FormGroup {
virtual ~CreditCard();
// FormGroup implementation:
- virtual string16 GetInfo(AutofillFieldType type) const OVERRIDE;
- virtual void SetInfo(AutofillFieldType type, const string16& value) OVERRIDE;
+ virtual string16 GetRawInfo(AutofillFieldType type) const OVERRIDE;
+ virtual void SetRawInfo(AutofillFieldType type,
+ const string16& value) OVERRIDE;
virtual string16 GetCanonicalizedInfo(AutofillFieldType type) const OVERRIDE;
virtual bool SetCanonicalizedInfo(AutofillFieldType type,
const string16& value) OVERRIDE;