| Index: components/certificate_reporting/error_report.h
|
| diff --git a/components/certificate_reporting/error_report.h b/components/certificate_reporting/error_report.h
|
| index 8600cecd84b58026d74bea28c5481c956e1c7332..0200dcd4304be9f3230a80a0e4d327c02f46f02d 100644
|
| --- a/components/certificate_reporting/error_report.h
|
| +++ b/components/certificate_reporting/error_report.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef COMPONENTS_CERTIFICATE_REPORTING_CERTIFICATE_ERROR_REPORT_H_
|
| #define COMPONENTS_CERTIFICATE_REPORTING_CERTIFICATE_ERROR_REPORT_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
|
|
| namespace net {
|
| class SSLInfo;
|
| @@ -65,7 +65,7 @@ class ErrorReport {
|
| const std::string& hostname() const;
|
|
|
| private:
|
| - scoped_ptr<CertLoggerRequest> cert_report_;
|
| + std::unique_ptr<CertLoggerRequest> cert_report_;
|
| };
|
|
|
| } // namespace certificate_reporting
|
|
|