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

Unified Diff: chrome/browser/autofill/phone_number.cc

Issue 2818033: AutoFill: Aggregate profile data. Remove the AutoFill InfoBar. (Closed)
Patch Set: Comment. Created 10 years, 6 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/phone_number.h ('k') | chrome/browser/sync/glue/synchronized_preferences.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/phone_number.cc
diff --git a/chrome/browser/autofill/phone_number.cc b/chrome/browser/autofill/phone_number.cc
index 9605d1d3598a3aa83b00151147ff064ba987ee00..997edd91635c23584538bfa3c82aeaa2b7503fc8 100644
--- a/chrome/browser/autofill/phone_number.cc
+++ b/chrome/browser/autofill/phone_number.cc
@@ -55,6 +55,25 @@ void PhoneNumber::GetPossibleFieldTypes(const string16& text,
possible_types->insert(GetWholeNumberType());
}
+void PhoneNumber::GetAvailableFieldTypes(FieldTypeSet* available_types) const {
+ DCHECK(available_types);
+
+ if (!number().empty())
+ available_types->insert(GetNumberType());
+
+ if (!city_code().empty())
+ available_types->insert(GetCityCodeType());
+
+ if (!country_code().empty())
+ available_types->insert(GetCountryCodeType());
+
+ if (!CityAndNumber().empty())
+ available_types->insert(GetCityAndNumberType());
+
+ if (!WholeNumber().empty())
+ available_types->insert(GetWholeNumberType());
+}
+
string16 PhoneNumber::GetFieldText(const AutoFillType& type) const {
AutoFillFieldType field_type = type.field_type();
if (field_type == GetNumberType())
@@ -72,7 +91,7 @@ string16 PhoneNumber::GetFieldText(const AutoFillType& type) const {
if (field_type == GetWholeNumberType())
return WholeNumber();
- return EmptyString16();
+ return string16();
}
void PhoneNumber::FindInfoMatches(const AutoFillType& type,
@@ -113,7 +132,8 @@ void PhoneNumber::SetInfo(const AutoFillType& type, const string16& value) {
set_city_code(number);
else if (subgroup == AutoFillType::PHONE_COUNTRY_CODE)
set_country_code(number);
- else if (subgroup == AutoFillType::PHONE_WHOLE_NUMBER)
+ else if (subgroup == AutoFillType::PHONE_CITY_AND_NUMBER ||
+ subgroup == AutoFillType::PHONE_WHOLE_NUMBER)
set_whole_number(number);
else
NOTREACHED();
« no previous file with comments | « chrome/browser/autofill/phone_number.h ('k') | chrome/browser/sync/glue/synchronized_preferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698