| Index: chrome/browser/ui/webui/predictors/predictors_handler.cc
|
| diff --git a/chrome/browser/ui/webui/predictors/predictors_handler.cc b/chrome/browser/ui/webui/predictors/predictors_handler.cc
|
| index ebff918a5b07c1e95e838fed1ef65c20e8e2821c..1dc4b2c903756779358e3fb3aca9823ba190f96b 100644
|
| --- a/chrome/browser/ui/webui/predictors/predictors_handler.cc
|
| +++ b/chrome/browser/ui/webui/predictors/predictors_handler.cc
|
| @@ -115,8 +115,8 @@ void PredictorsHandler::AddPrefetchDataMapToListValue(
|
| std::unique_ptr<base::DictionaryValue> main(new base::DictionaryValue());
|
| main->SetString("main_frame_url", it->first);
|
| base::ListValue* resources = new base::ListValue();
|
| - for (ResourcePrefetchPredictor::ResourceRows::const_iterator
|
| - row = it->second.resources.begin();
|
| + for (std::vector<ResourcePrefetchPredictor::ResourceRow>::const_iterator
|
| + row = it->second.resources.begin();
|
| row != it->second.resources.end(); ++row) {
|
| std::unique_ptr<base::DictionaryValue> resource(
|
| new base::DictionaryValue());
|
|
|