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

Unified Diff: chrome/browser/autofill/address_field.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 | « chrome/browser/autofill/address.cc ('k') | chrome/browser/autofill/autofill_profile.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/address_field.cc
===================================================================
--- chrome/browser/autofill/address_field.cc (revision 35719)
+++ chrome/browser/autofill/address_field.cc (working copy)
@@ -24,7 +24,7 @@
case kGenericAddress:
address_line1 = ADDRESS_HOME_LINE1;
address_line2 = ADDRESS_HOME_LINE2;
- address_appt_num = ADDRESS_HOME_APPT_NUM;
+ address_appt_num = ADDRESS_HOME_APT_NUM;
address_city = ADDRESS_HOME_CITY;
address_state = ADDRESS_HOME_STATE;
address_zip = ADDRESS_HOME_ZIP;
@@ -34,7 +34,7 @@
case kBillingAddress:
address_line1 = ADDRESS_BILLING_LINE1;
address_line2 = ADDRESS_BILLING_LINE2;
- address_appt_num = ADDRESS_BILLING_APPT_NUM;
+ address_appt_num = ADDRESS_BILLING_APT_NUM;
address_city = ADDRESS_BILLING_CITY;
address_state = ADDRESS_BILLING_STATE;
address_zip = ADDRESS_BILLING_ZIP;
« no previous file with comments | « chrome/browser/autofill/address.cc ('k') | chrome/browser/autofill/autofill_profile.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698