| Index: chrome/browser/autofill/autofill_profile.h
|
| diff --git a/chrome/browser/autofill/autofill_profile.h b/chrome/browser/autofill/autofill_profile.h
|
| index 4dbb94ad3af85f0e51f32cc13c4b7ad9bea3f9b0..7d72fbebfde0504da3efd31f390b92fc24270ab2 100644
|
| --- a/chrome/browser/autofill/autofill_profile.h
|
| +++ b/chrome/browser/autofill/autofill_profile.h
|
| @@ -16,7 +16,6 @@
|
| #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"
|
| @@ -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_;
|
| };
|
|
|
|
|