Index: chromeos/system/statistics_provider.cc |
diff --git a/chromeos/system/statistics_provider.cc b/chromeos/system/statistics_provider.cc |
index 834f0b6a80d41584f486e6e92a22d06d2fcc6cb6..6f86dfb7afa017881e976ef9d4f054a9a2f301de 100644 |
--- a/chromeos/system/statistics_provider.cc |
+++ b/chromeos/system/statistics_provider.cc |
@@ -503,8 +503,8 @@ void StatisticsProviderImpl::LoadRegionsFile(const base::FilePath& filename) { |
JSONFileValueDeserializer regions_file(filename); |
int regions_error_code = 0; |
std::string regions_error_message; |
- regional_data_.reset( |
- regions_file.Deserialize(®ions_error_code, ®ions_error_message)); |
+ regional_data_ = |
+ regions_file.Deserialize(®ions_error_code, ®ions_error_message); |
if (!regional_data_.get()) { |
if (base::SysInfo::IsRunningOnChromeOS()) |
LOG(ERROR) << "Failed to load regions file '" << filename.value() |