Index: content/browser/session_history_browsertest.cc |
diff --git a/content/browser/session_history_browsertest.cc b/content/browser/session_history_browsertest.cc |
index 8a04f7ef2de596d940e5647b8a8d9915c6ed6b07..dca5546570db993db4ad905449a2b8557a2ded52 100644 |
--- a/content/browser/session_history_browsertest.cc |
+++ b/content/browser/session_history_browsertest.cc |
@@ -2,6 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <utility> |
+ |
#include "base/strings/string_util.h" |
#include "base/strings/stringprintf.h" |
#include "base/strings/utf_string_conversions.h" |
@@ -39,7 +41,7 @@ scoped_ptr<net::test_server::HttpResponse> HandleEchoTitleRequest( |
base::StringPrintf( |
"<html><head><title>%s</title></head></html>", |
request.content.c_str())); |
- return http_response.Pass(); |
+ return std::move(http_response); |
} |
} // namespace |