summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/autofill_country.cc
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-03 19:17:05 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-03 19:17:05 +0000
commit537f1adc36a153f919335c54c7232205cefede48 (patch)
treec819d0b951b033648f593d30e672f98bb19a6021 /chrome/browser/autofill/autofill_country.cc
parent4701be8b9d5d648757e1017b1bdda4cf34d45e36 (diff)
downloadchromium_src-537f1adc36a153f919335c54c7232205cefede48.zip
chromium_src-537f1adc36a153f919335c54c7232205cefede48.tar.gz
chromium_src-537f1adc36a153f919335c54c7232205cefede48.tar.bz2
Explicitly mention the icu namespace in autofill
BUG=none TEST=none Review URL: http://codereview.chromium.org/6691023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80289 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_country.cc')
-rw-r--r--chrome/browser/autofill/autofill_country.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autofill/autofill_country.cc b/chrome/browser/autofill/autofill_country.cc
index a027981..897d543 100644
--- a/chrome/browser/autofill/autofill_country.cc
+++ b/chrome/browser/autofill/autofill_country.cc
@@ -317,7 +317,7 @@ CountryDataMap::CountryDataMap() {
// Add any other countries that ICU knows about, falling back to default data
// values.
- for (const char* const* country_pointer = Locale::getISOCountries();
+ for (const char* const* country_pointer = icu::Locale::getISOCountries();
*country_pointer;
++country_pointer) {
std::string country_code = *country_pointer;