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

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

Issue 6633001: Convert autofill messages to use the new IPC macros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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/autocomplete_history_manager.cc ('k') | chrome/browser/autofill/autofill_common_test.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 77285)
+++ chrome/browser/autofill/address_field.cc (working copy)
@@ -148,7 +148,7 @@
// "bill" or "ship". We could check for the ECML type prefixes
// here, but there's no need to since ECML's prefixes Ecom_BillTo
// and Ecom_ShipTo contain "bill" and "ship" anyway.
- string16 name = StringToLowerASCII(address1_->name());
+ string16 name = StringToLowerASCII(address1_->name);
return AddressTypeFromText(name);
}
@@ -294,7 +294,7 @@
}
AddressType tempType;
- string16 name = (**iter)->name();
+ string16 name = (**iter)->name;
// Note: comparisons using the ecml compliant name as a prefix must be used in
// order to accommodate Google Checkout. See FormFieldSet::GetEcmlPattern for
« no previous file with comments | « chrome/browser/autocomplete_history_manager.cc ('k') | chrome/browser/autofill/autofill_common_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698