| Index: components/autofill/core/browser/autofill_profile.cc
|
| diff --git a/components/autofill/core/browser/autofill_profile.cc b/components/autofill/core/browser/autofill_profile.cc
|
| index fc3f39ef259b0e1c54be6dda1f67e2a2c2851ca5..33e2bf4f7d84c0eb161a597281ac8ff34bba8526 100644
|
| --- a/components/autofill/core/browser/autofill_profile.cc
|
| +++ b/components/autofill/core/browser/autofill_profile.cc
|
| @@ -25,8 +25,8 @@
|
| #include "components/autofill/core/browser/phone_number_i18n.h"
|
| #include "components/autofill/core/browser/validation.h"
|
| #include "components/autofill/core/common/form_field_data.h"
|
| -#include "grit/components_strings.h"
|
| -#include "third_party/libaddressinput/chromium/cpp/include/libaddressinput/address_data.h"
|
| +#include "grit/component_strings.h"
|
| +#include "third_party/libaddressinput/src/cpp/include/libaddressinput/address_data.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
|
|
| using base::ASCIIToUTF16;
|
| @@ -298,11 +298,11 @@ base::string16 AutofillProfile::GetInfo(const AutofillType& type,
|
| if (type.html_type() == HTML_TYPE_FULL_ADDRESS) {
|
| scoped_ptr< ::i18n::addressinput::AddressData> address_data =
|
| i18n::CreateAddressDataFromAutofillProfile(*this, app_locale);
|
| - if (!address_data->HasAllRequiredFields())
|
| - return base::string16();
|
| + // if (!address_data->HasAllRequiredFields())
|
| + // return base::string16();
|
|
|
| std::vector<std::string> lines;
|
| - address_data->FormatForDisplay(&lines);
|
| + // address_data->FormatForDisplay(&lines);
|
| return base::UTF8ToUTF16(JoinString(lines, '\n'));
|
| }
|
|
|
|
|