Index: chrome/browser/ui/autofill/autofill_dialog_models.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_models.cc b/chrome/browser/ui/autofill/autofill_dialog_models.cc |
index 10aa69b6735247e3fa83148e32cc5b2126423d26..4096ea19b28c6e424553f4f629a8f35979d224bd 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_models.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_models.cc |
@@ -101,22 +101,4 @@ string16 YearComboboxModel::GetItemAt(int index) { |
return base::IntToString16(this_year_ + index); |
} |
-// CountryComboboxModel -------------------------------------------------------- |
- |
-CountryComboboxModel::CountryComboboxModel() { |
- AutofillCountry::GetAvailableCountries(&country_codes_); |
-} |
- |
-CountryComboboxModel::~CountryComboboxModel() {} |
- |
-int CountryComboboxModel::GetItemCount() const { |
- return country_codes_.size(); |
-} |
- |
-string16 CountryComboboxModel::GetItemAt(int index) { |
- std::string app_locale = AutofillCountry::ApplicationLocale(); |
- const AutofillCountry country(country_codes_[index], app_locale); |
- return country.name(); |
-} |
- |
} // autofill |