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

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

Issue 517066: Implement AutoFillProfile, a collection of form groups that stores profile in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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 | « no previous file | chrome/browser/autofill/address_field.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/address.cc
===================================================================
--- chrome/browser/autofill/address.cc (revision 35719)
+++ chrome/browser/autofill/address.cc (working copy)
@@ -98,7 +98,7 @@
set_line1(value);
else if (subgroup == AutoFillType::ADDRESS_LINE2)
set_line2(value);
- else if (subgroup == AutoFillType::ADDRESS_APPT_NUM)
+ else if (subgroup == AutoFillType::ADDRESS_APT_NUM)
set_apt_num(value);
else if (subgroup == AutoFillType::ADDRESS_CITY)
set_city(value);
@@ -207,7 +207,7 @@
} else if (subgroup == AutoFillType::ADDRESS_LINE2 &&
StartsWith(line2(), info, false)) {
*match = line2();
- } else if (subgroup == AutoFillType::ADDRESS_APPT_NUM &&
+ } else if (subgroup == AutoFillType::ADDRESS_APT_NUM &&
StartsWith(apt_num(), info, true)) {
*match = apt_num();
} else if (subgroup == AutoFillType::ADDRESS_CITY &&
« no previous file with comments | « no previous file | chrome/browser/autofill/address_field.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698