| Index: chrome/browser/autofill/contact_info.cc
|
| diff --git a/chrome/browser/autofill/contact_info.cc b/chrome/browser/autofill/contact_info.cc
|
| index c7a4b77f38c3d9dee63f3acdad1eefb04c4f6060..c3a92d83553d72b9a54e9e2e9649cce7d562e7c0 100644
|
| --- a/chrome/browser/autofill/contact_info.cc
|
| +++ b/chrome/browser/autofill/contact_info.cc
|
| @@ -84,11 +84,9 @@ void NameInfo::SetInfo(AutofillFieldType type, const string16& value) {
|
| }
|
|
|
| string16 NameInfo::FullName() const {
|
| - if (first_.empty())
|
| - return string16();
|
| -
|
| std::vector<string16> full_name;
|
| - full_name.push_back(first_);
|
| + if (!first_.empty())
|
| + full_name.push_back(first_);
|
|
|
| if (!middle_.empty())
|
| full_name.push_back(middle_);
|
|
|