summaryrefslogtreecommitdiffstats
path: root/net/quic/quic_end_to_end_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/quic/quic_end_to_end_unittest.cc')
-rw-r--r--net/quic/quic_end_to_end_unittest.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/quic/quic_end_to_end_unittest.cc b/net/quic/quic_end_to_end_unittest.cc
index 6e631e4..d3aba8e 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()),