diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-17 00:06:54 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-17 00:06:54 +0000 |
commit | 4ef55f8c1a419b2be13b2086e424d64abc6a11d2 (patch) | |
tree | cf0b2079a18b9945e7ee7512671fb75c95dd8467 /chrome/browser/autofill/autofill_profile.h | |
parent | 82b23338f5f774258e11dd1e7e86c6216ffbfb18 (diff) | |
download | chromium_src-4ef55f8c1a419b2be13b2086e424d64abc6a11d2.zip chromium_src-4ef55f8c1a419b2be13b2086e424d64abc6a11d2.tar.gz chromium_src-4ef55f8c1a419b2be13b2086e424d64abc6a11d2.tar.bz2 |
Autofill: Remove fax number completely.
BUG=81846
TEST=*
R=isherman@chromium.org
Review URL: http://codereview.chromium.org/7892048
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101602 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_profile.h')
-rw-r--r-- | chrome/browser/autofill/autofill_profile.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/chrome/browser/autofill/autofill_profile.h b/chrome/browser/autofill/autofill_profile.h index 4dbb94a..69efbaa 100644 --- a/chrome/browser/autofill/autofill_profile.h +++ b/chrome/browser/autofill/autofill_profile.h @@ -16,10 +16,9 @@ #include "chrome/browser/autofill/address.h" #include "chrome/browser/autofill/autofill_type.h" #include "chrome/browser/autofill/contact_info.h" -#include "chrome/browser/autofill/fax_number.h" #include "chrome/browser/autofill/field_types.h" #include "chrome/browser/autofill/form_group.h" -#include "chrome/browser/autofill/home_phone_number.h" +#include "chrome/browser/autofill/phone_number.h" // A collection of FormGroups stored in a profile. AutofillProfile also // implements the FormGroup interface so that owners of this object can request @@ -75,8 +74,7 @@ class AutofillProfile : public FormGroup { // 2. Address. // 3. E-mail. // 4. Phone. - // 5. Fax. - // 6. Company name. + // 5. Company name. // Profile labels are changed accordingly to these rules. // Returns true if any of the profiles were updated. // This function is useful if you want to adjust unique labels for all @@ -130,7 +128,7 @@ class AutofillProfile : public FormGroup { private: typedef std::vector<const FormGroup*> FormGroupList; - // FormGroup: + // FormGroup implementation. virtual void GetSupportedTypes(FieldTypeSet* supported_types) const OVERRIDE; // Shared implementation for GetMultiInfo() and GetCanonicalizedMultiInfo(). @@ -181,7 +179,6 @@ class AutofillProfile : public FormGroup { std::vector<EmailInfo> email_; CompanyInfo company_; std::vector<PhoneNumber> home_number_; - std::vector<PhoneNumber> fax_number_; Address address_; }; |