Index: third_party/crashpad/crashpad/handler/crash_report_upload_thread.cc |
diff --git a/third_party/crashpad/crashpad/handler/crash_report_upload_thread.cc b/third_party/crashpad/crashpad/handler/crash_report_upload_thread.cc |
index 38ce0297a0e6be9068cbdf907e64554657181904..00a12f7ff553b1cc77a1c80ab926421b27f1c673 100644 |
--- a/third_party/crashpad/crashpad/handler/crash_report_upload_thread.cc |
+++ b/third_party/crashpad/crashpad/handler/crash_report_upload_thread.cc |
@@ -18,10 +18,10 @@ |
#include <time.h> |
#include <map> |
+#include <memory> |
#include <vector> |
#include "base/logging.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/strings/utf_string_conversions.h" |
#include "build/build_config.h" |
#include "client/settings.h" |
@@ -316,7 +316,7 @@ CrashReportUploadThread::UploadResult CrashReportUploadThread::UploadReport( |
report->file_path, |
"application/octet-stream"); |
- scoped_ptr<HTTPTransport> http_transport(HTTPTransport::Create()); |
+ std::unique_ptr<HTTPTransport> http_transport(HTTPTransport::Create()); |
http_transport->SetURL(url_); |
HTTPHeaders::value_type content_type = |
http_multipart_builder.GetContentType(); |