Index: net/http/http_response_headers.cc |
diff --git a/net/http/http_response_headers.cc b/net/http/http_response_headers.cc |
index c0f8039a50aa8146076f49917e391fe9b6ed950f..ba51cfdbc57355325c2e2224ffb2eed1a41cb745 100644 |
--- a/net/http/http_response_headers.cc |
+++ b/net/http/http_response_headers.cc |
@@ -10,6 +10,7 @@ |
#include "net/http/http_response_headers.h" |
#include <algorithm> |
+#include <utility> |
#include "base/format_macros.h" |
#include "base/logging.h" |
@@ -1407,7 +1408,7 @@ scoped_ptr<base::Value> HttpResponseHeaders::NetLogCallback( |
escaped_value.c_str()))); |
} |
dict->Set("headers", headers); |
- return dict.Pass(); |
+ return std::move(dict); |
} |
// static |