| Index: chrome/browser/safe_browsing/incident_reporting/suspicious_module_incident.h
|
| diff --git a/chrome/browser/safe_browsing/incident_reporting/suspicious_module_incident.h b/chrome/browser/safe_browsing/incident_reporting/suspicious_module_incident.h
|
| index a72ed72c27bbe4dec4ee6edaa992b92b77b4f636..3e998cc4ac751df36c152f84c703a361538b1325 100644
|
| --- a/chrome/browser/safe_browsing/incident_reporting/suspicious_module_incident.h
|
| +++ b/chrome/browser/safe_browsing/incident_reporting/suspicious_module_incident.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/safe_browsing/incident_reporting/incident.h"
|
|
|
| namespace safe_browsing {
|
| @@ -20,7 +21,8 @@ class ClientIncidentReport_IncidentData_SuspiciousModuleIncident;
|
| class SuspiciousModuleIncident : public Incident {
|
| public:
|
| explicit SuspiciousModuleIncident(
|
| - scoped_ptr<ClientIncidentReport_IncidentData_SuspiciousModuleIncident>
|
| + std::unique_ptr<
|
| + ClientIncidentReport_IncidentData_SuspiciousModuleIncident>
|
| suspicious_modules);
|
| ~SuspiciousModuleIncident() override;
|
|
|
|
|