Index: chrome/browser/net/predictor.cc |
diff --git a/chrome/browser/net/predictor.cc b/chrome/browser/net/predictor.cc |
index 5df69b866312064e4607fcf876eccc2d23c81478..66f79563db4b435455f4f73ffc7c5dad43308d29 100644 |
--- a/chrome/browser/net/predictor.cc |
+++ b/chrome/browser/net/predictor.cc |
@@ -613,7 +613,7 @@ void Predictor::DeserializeReferrers(const base::ListValue& referral_list) { |
referral_list.GetInteger(0, &format_version) && |
format_version == kPredictorReferrerVersion) { |
for (size_t i = 1; i < referral_list.GetSize(); ++i) { |
- base::ListValue* motivator; |
+ const base::ListValue* motivator; |
if (!referral_list.GetList(i, &motivator)) { |
NOTREACHED(); |
return; |
@@ -624,7 +624,7 @@ void Predictor::DeserializeReferrers(const base::ListValue& referral_list) { |
return; |
} |
- Value* subresource_list; |
+ const Value* subresource_list; |
if (!motivator->Get(1, &subresource_list)) { |
NOTREACHED(); |
return; |