| Index: chrome/browser/ui/webui/options/autofill_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/autofill_options_handler.cc b/chrome/browser/ui/webui/options/autofill_options_handler.cc
|
| index d856ee83afe64dea7dea107641892e9f3bba0025..358faed4dcffaaa46dfba2c0498c68c6e1b41ad3 100644
|
| --- a/chrome/browser/ui/webui/options/autofill_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/autofill_options_handler.cc
|
| @@ -44,7 +44,8 @@ const char kSettingsOrigin[] = "Chrome settings";
|
| // Sets data related to the country <select>.
|
| void SetCountryData(const PersonalDataManager& manager,
|
| base::DictionaryValue* localized_strings) {
|
| - autofill::CountryComboboxModel model(manager, true);
|
| + autofill::CountryComboboxModel model(
|
| + manager, std::set<base::string16>(), true);
|
| const std::vector<AutofillCountry*>& countries = model.countries();
|
| localized_strings->SetString("defaultCountryCode",
|
| countries.front()->country_code());
|
|
|