Index: chromeos/network/device_state.cc |
diff --git a/chromeos/network/device_state.cc b/chromeos/network/device_state.cc |
index 72567a4fe9a741e90045d3d21eefcc7c98444438..27101d00e99dd18317e63c6d9c57ac75a3d28290 100644 |
--- a/chromeos/network/device_state.cc |
+++ b/chromeos/network/device_state.cc |
@@ -35,7 +35,7 @@ bool DeviceState::PropertyChanged(const std::string& key, |
} else if (key == shill::kProviderRequiresRoamingProperty) { |
return GetBooleanValue(key, value, &provider_requires_roaming_); |
} else if (key == flimflam::kHomeProviderProperty) { |
- const DictionaryValue* dict = NULL; |
+ const base::DictionaryValue* dict = NULL; |
if (!value.GetAsDictionary(&dict)) |
return false; |
std::string home_provider_country; |
@@ -60,7 +60,7 @@ bool DeviceState::PropertyChanged(const std::string& key, |
} else if (key == flimflam::kTechnologyFamilyProperty) { |
return GetStringValue(key, value, &technology_family_); |
} else if (key == flimflam::kSIMLockStatusProperty) { |
- const DictionaryValue* dict = NULL; |
+ const base::DictionaryValue* dict = NULL; |
if (!value.GetAsDictionary(&dict)) |
return false; |
if (!dict->GetStringWithoutPathExpansion(flimflam::kSIMLockTypeProperty, |