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

Unified Diff: third_party/crashpad/crashpad/util/net/http_multipart_builder.h

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_multipart_builder.h
diff --git a/third_party/crashpad/crashpad/util/net/http_multipart_builder.h b/third_party/crashpad/crashpad/util/net/http_multipart_builder.h
index 3ff7776b64efe00caeef28c0ce1d15e0ba383987..65602c714235c31b3b12495ae070e8f19e937942 100644
--- a/third_party/crashpad/crashpad/util/net/http_multipart_builder.h
+++ b/third_party/crashpad/crashpad/util/net/http_multipart_builder.h
@@ -16,11 +16,11 @@
#define CRASHPAD_UTIL_NET_HTTP_MULTIPART_BUILDER_H_
#include <map>
+#include <memory>
#include <string>
#include "base/files/file_path.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "util/net/http_headers.h"
namespace crashpad {
@@ -62,7 +62,7 @@ class HTTPMultipartBuilder {
//! the builder.
//!
//! \return A caller-owned HTTPBodyStream object.
- scoped_ptr<HTTPBodyStream> GetBodyStream();
+ std::unique_ptr<HTTPBodyStream> GetBodyStream();
//! \brief Gets the header pair for `"Content-Type"`.
HTTPHeaders::value_type GetContentType() const;

Powered by Google App Engine
This is Rietveld 408576698