Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Unified Diff: third_party/crashpad/crashpad/util/net/http_transport.cc

Issue 1911823002: Convert //third_party from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update crashpad's README.chromium Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/util/net/http_transport.cc
diff --git a/third_party/crashpad/crashpad/util/net/http_transport.cc b/third_party/crashpad/crashpad/util/net/http_transport.cc
index 8587d0aaaf09e3e255f942466d0b93e832ecaa1f..5b1f611e81d94570af932ad1a864f2bb0e2e2077 100644
--- a/third_party/crashpad/crashpad/util/net/http_transport.cc
+++ b/third_party/crashpad/crashpad/util/net/http_transport.cc
@@ -44,7 +44,7 @@ void HTTPTransport::SetHeader(const std::string& header,
headers_[header] = value;
}
-void HTTPTransport::SetBodyStream(scoped_ptr<HTTPBodyStream> stream) {
+void HTTPTransport::SetBodyStream(std::unique_ptr<HTTPBodyStream> stream) {
body_stream_ = std::move(stream);
}
« no previous file with comments | « third_party/crashpad/crashpad/util/net/http_transport.h ('k') | third_party/crashpad/crashpad/util/net/http_transport_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698