Slow processing of sys info before sending to the feedback app. |
||
Issue descriptionThe below function takes ~30ms on peach_pit! https://cs.chromium.org/chromium/src/chrome/browser/extensions/api/feedback_private/feedback_service.cc?q=FeedbackService::OnSystemLogsFetchComplete&sq=package:chromium&l=107-117&dr=CSs void FeedbackService::OnSystemLogsFetchComplete( const GetSystemInformationCallback& callback, std::unique_ptr<system_logs::SystemLogsResponse> sys_info_map) { SystemInformationList sys_info_list; if (sys_info_map.get()) { for (const auto& itr : *sys_info_map) PopulateSystemInfo(&sys_info_list, itr.first, itr.second); } callback.Run(sys_info_list); }
,
Jan 25 2017
|
||
►
Sign in to add a comment |
||
Comment 1 by bugdroid1@chromium.org
, Jan 17 2017