| 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..726f7ab36c1d45b2fc86f31a1e7575a1a7ed3f22 100644
|
| --- a/chrome/browser/ui/webui/predictors/predictors_handler.cc
|
| +++ b/chrome/browser/ui/webui/predictors/predictors_handler.cc
|
| @@ -115,7 +115,7 @@ 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
|
| + for (std::vector<ResourcePrefetchPredictor::ResourceRow>::const_iterator
|
| row = it->second.resources.begin();
|
| row != it->second.resources.end(); ++row) {
|
| std::unique_ptr<base::DictionaryValue> resource(
|
|
|