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

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

Issue 517054: Remove all uses of EmptyString16(), EmptyWString(), and EmptyGURL(), and thei... (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/credit_card.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/contact_info.cc
===================================================================
--- chrome/browser/autofill/contact_info.cc (revision 35729)
+++ chrome/browser/autofill/contact_info.cc (working copy)
@@ -84,7 +84,7 @@
return last();
if (field_type == NAME_MIDDLE_INITIAL)
- MiddleInitial();
+ return MiddleInitial();
if (field_type == NAME_FULL)
return FullName();
@@ -98,7 +98,7 @@
if (field_type == COMPANY_NAME)
return company_name();
- return EmptyString16();
+ return string16();
}
void ContactInfo::SetInfo(const AutoFillType& type, const string16& value) {
@@ -122,7 +122,7 @@
string16 ContactInfo::FullName() const {
if (first_.empty())
- return EmptyString16();
+ return string16();
std::vector<string16> full_name;
full_name.push_back(first_);
@@ -141,7 +141,7 @@
string16 ContactInfo::MiddleInitial() const {
if (middle_.empty())
- return EmptyString16();
+ return string16();
string16 middle_name(middle());
string16 initial;
« no previous file with comments | « chrome/browser/autofill/address.cc ('k') | chrome/browser/autofill/credit_card.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698