Index: chrome/browser/chromeos/cros/network_parser.cc |
diff --git a/chrome/browser/chromeos/cros/network_parser.cc b/chrome/browser/chromeos/cros/network_parser.cc |
index 9fcdcaf5ad76a4a521cee43e10bc00fd35a58ef0..686904dceb4be5d2143546ec54fcf378a36d1f3a 100644 |
--- a/chrome/browser/chromeos/cros/network_parser.cc |
+++ b/chrome/browser/chromeos/cros/network_parser.cc |
@@ -38,7 +38,7 @@ bool NetworkDeviceParser::UpdateDeviceFromInfo(const DictionaryValue& info, |
for (DictionaryValue::key_iterator iter = info.begin_keys(); |
iter != info.end_keys(); ++iter) { |
const std::string& key = *iter; |
- base::Value* value; |
+ const base::Value* value; |
bool result = info.GetWithoutPathExpansion(key, &value); |
DCHECK(result); |
if (result) |
@@ -112,7 +112,7 @@ bool NetworkParser::UpdateNetworkFromInfo(const DictionaryValue& info, |
for (DictionaryValue::key_iterator iter = info.begin_keys(); |
iter != info.end_keys(); ++iter) { |
const std::string& key = *iter; |
- base::Value* value; |
+ const base::Value* value; |
bool res = info.GetWithoutPathExpansion(key, &value); |
DCHECK(res); |
if (res) // Use network's parser to update status |