| Index: chrome/browser/chromeos/feedback_util.cc
|
| diff --git a/chrome/browser/chromeos/feedback_util.cc b/chrome/browser/chromeos/feedback_util.cc
|
| index 18e7e5de9c59304b6a0880fd5d8ea3f4da0552f0..489301fc32d86d5b5ac517f88fe0bafb10bb32df 100644
|
| --- a/chrome/browser/chromeos/feedback_util.cc
|
| +++ b/chrome/browser/chromeos/feedback_util.cc
|
| @@ -34,9 +34,9 @@ void OnGetSystemInformation(Profile* profile,
|
|
|
| scoped_ptr<FeedbackData::SystemLogsMap> sys_logs(
|
| new FeedbackData::SystemLogsMap);
|
| - for (extensions::SystemInformationList::const_iterator it = sys_info.begin();
|
| - it != sys_info.end(); ++it) {
|
| - (*sys_logs.get())[it->get()->key] = it->get()->value;
|
| + for (const extensions::api::feedback_private::SystemInformation& info :
|
| + sys_info) {
|
| + (*sys_logs.get())[info.key] = info.value;
|
| }
|
| feedback_data->SetAndCompressSystemInfo(std::move(sys_logs));
|
|
|
|
|