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

Unified Diff: chrome/browser/ui/autofill/country_combobox_model_unittest.cc

Issue 208243005: Determine language code and type of format for address. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add ctime include. Created 6 years, 9 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
Index: chrome/browser/ui/autofill/country_combobox_model_unittest.cc
diff --git a/chrome/browser/ui/autofill/country_combobox_model_unittest.cc b/chrome/browser/ui/autofill/country_combobox_model_unittest.cc
index 1514b7a4ddace3cc6541684a078fc28bc6907448..56ebd857c0e53aec66b2ce5b106e848a80788a69 100644
--- a/chrome/browser/ui/autofill/country_combobox_model_unittest.cc
+++ b/chrome/browser/ui/autofill/country_combobox_model_unittest.cc
@@ -50,7 +50,8 @@ TEST_F(CountryComboboxModelTest, AllCountriesHaveComponents) {
std::string country_code = model()->countries()[i]->country_code();
std::vector< ::i18n::addressinput::AddressUiComponent> components =
- ::i18n::addressinput::BuildComponents(country_code);
+ ::i18n::addressinput::BuildComponents(
+ country_code, std::string(), NULL);
EXPECT_FALSE(components.empty());
}
}

Powered by Google App Engine
This is Rietveld 408576698