| Index: chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h
|
| diff --git a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h
|
| index 83aadd925c3534959ca3504f4899b8500185d600..4c755714b74408b53e89cd3b36a37f367c0d1482 100644
|
| --- a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h
|
| +++ b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h
|
| @@ -34,7 +34,7 @@ class IncidentReportUploaderImpl : public IncidentReportUploader,
|
| // The id associated with the URLFetcher, for use by tests.
|
| static const int kTestUrlFetcherId;
|
|
|
| - virtual ~IncidentReportUploaderImpl();
|
| + ~IncidentReportUploaderImpl() override;
|
|
|
| // Uploads a report with a caller-provided URL context. |callback| will be run
|
| // when the upload is complete. Returns NULL if |report| cannot be serialized
|
| @@ -54,7 +54,7 @@ class IncidentReportUploaderImpl : public IncidentReportUploader,
|
| static GURL GetIncidentReportUrl();
|
|
|
| // net::URLFetcherDelegate methods.
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| // The underlying URL fetcher. The instance is alive from construction through
|
| // OnURLFetchComplete.
|
|
|