Chromium Code Reviews| Index: chrome/browser/safe_browsing/incident_reporting/environment_data_collection_win.cc |
| diff --git a/chrome/browser/safe_browsing/incident_reporting/environment_data_collection_win.cc b/chrome/browser/safe_browsing/incident_reporting/environment_data_collection_win.cc |
| index aa0deb72ba4e097f3f4f13cc49d41253543fa822..8e8cd3040e971aba14db0ea5b0ce8f170c89ca90 100644 |
| --- a/chrome/browser/safe_browsing/incident_reporting/environment_data_collection_win.cc |
| +++ b/chrome/browser/safe_browsing/incident_reporting/environment_data_collection_win.cc |
| @@ -124,8 +124,7 @@ void CollectModuleVerificationData( |
| ClientIncidentReport_EnvironmentData_Process_ModuleState* module_state = |
| process->add_module_state(); |
| - module_state->set_name( |
| - base::WideToUTF8(std::wstring(modules_to_verify[i]))); |
| + module_state->set_name(base::WideToUTF8(modules_to_verify[i])); |
|
brettw
2014/12/03 21:12:21
Note that this is the same since there's no wide s
|
| // Add 1 to the ModuleState enum to get the corresponding value in the |
| // protobuf's ModuleState enum. |
| module_state->set_modified_state(static_cast< |