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

Unified Diff: util/net/http_transport.cc

Issue 1513573005: Provide std::move() in compat instead of using crashpad::move() (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years 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
« no previous file with comments | « util/mach/child_port_handshake.cc ('k') | util/net/http_transport_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/net/http_transport.cc
diff --git a/util/net/http_transport.cc b/util/net/http_transport.cc
index 07b0b3434ba7b2673e922d25919d6acd451c94cf..8587d0aaaf09e3e255f942466d0b93e832ecaa1f 100644
--- a/util/net/http_transport.cc
+++ b/util/net/http_transport.cc
@@ -14,7 +14,8 @@
#include "util/net/http_transport.h"
-#include "util/stdlib/move.h"
+#include <utility>
+
#include "util/net/http_body.h"
namespace crashpad {
@@ -44,7 +45,7 @@ void HTTPTransport::SetHeader(const std::string& header,
}
void HTTPTransport::SetBodyStream(scoped_ptr<HTTPBodyStream> stream) {
- body_stream_ = crashpad::move(stream);
+ body_stream_ = std::move(stream);
}
void HTTPTransport::SetTimeout(double timeout) {
« no previous file with comments | « util/mach/child_port_handshake.cc ('k') | util/net/http_transport_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698