| Index: chrome/browser/safe_browsing/incident_reporting/incident_report_uploader.h
|
| diff --git a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader.h b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader.h
|
| index 46de6fe06807edf4eb890b39ca8a8915d250cad9..d2254b552c4cd6378ddde540d2f95b56e1bbdc1a 100644
|
| --- a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader.h
|
| +++ b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_INCIDENT_REPORT_UPLOADER_H_
|
| #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_INCIDENT_REPORT_UPLOADER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/callback.h"
|
| -#include "base/memory/scoped_ptr.h"
|
|
|
| namespace safe_browsing {
|
|
|
| @@ -31,7 +32,7 @@ class IncidentReportUploader {
|
| // A callback run by the uploader upon success or failure. The first argument
|
| // indicates the result of the upload, while the second contains the response
|
| // received, if any.
|
| - typedef base::Callback<void(Result, scoped_ptr<ClientIncidentResponse>)>
|
| + typedef base::Callback<void(Result, std::unique_ptr<ClientIncidentResponse>)>
|
| OnResultCallback;
|
|
|
| virtual ~IncidentReportUploader();
|
|
|