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

Unified Diff: chrome/browser/autofill/autofill_profile.h

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment fix. Created 9 years, 3 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/browser/autofill/autofill_metrics_unittest.cc ('k') | chrome/browser/autofill/autofill_profile.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..69efbaa8aa20100e9664c1c3439ecfdf4183cfc0 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_;
};
« no previous file with comments | « chrome/browser/autofill/autofill_metrics_unittest.cc ('k') | chrome/browser/autofill/autofill_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698