Index: base/i18n/timezone.cc |
diff --git a/base/i18n/timezone.cc b/base/i18n/timezone.cc |
index fbc9949d1e4c8976d5e1a64eb9dc5891b82ca7be..e881c9d680f8277dfeb384365399f23a2268c467 100644 |
--- a/base/i18n/timezone.cc |
+++ b/base/i18n/timezone.cc |
@@ -607,7 +607,7 @@ class TimezoneMap { |
} // namespace |
std::string CountryCodeForCurrentTimezone() { |
- scoped_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault()); |
+ std::unique_ptr<icu::TimeZone> zone(icu::TimeZone::createDefault()); |
icu::UnicodeString id; |
zone->getID(id); |
string16 olson_code(id.getBuffer(), id.length()); |