Index: net/quic/quic_end_to_end_unittest.cc |
diff --git a/net/quic/quic_end_to_end_unittest.cc b/net/quic/quic_end_to_end_unittest.cc |
index 6e631e4a7f69f641720f6a7b7049c4b642e0d8d1..d3aba8ed7afb0fdcaea97ecbd0ff5f787672d78f 100644 |
--- a/net/quic/quic_end_to_end_unittest.cc |
+++ b/net/quic/quic_end_to_end_unittest.cc |
@@ -2,6 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <utility> |
#include <vector> |
#include "base/compiler_specific.h" |
@@ -79,7 +80,7 @@ class QuicEndToEndTest : public PlatformTest { |
protected: |
QuicEndToEndTest() |
: host_resolver_impl_(CreateResolverImpl()), |
- host_resolver_(host_resolver_impl_.Pass()), |
+ host_resolver_(std::move(host_resolver_impl_)), |
cert_transparency_verifier_(new MultiLogCTVerifier()), |
ssl_config_service_(new SSLConfigServiceDefaults), |
proxy_service_(ProxyService::CreateDirect()), |