OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/quic/quic_client_session.h" | 5 #include "net/quic/quic_client_session.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/base64.h" | 9 #include "base/base64.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 : connection_(new PacketSavingConnection(Perspective::IS_CLIENT, | 44 : connection_(new PacketSavingConnection(Perspective::IS_CLIENT, |
45 SupportedVersions(GetParam()))), | 45 SupportedVersions(GetParam()))), |
46 session_(connection_, | 46 session_(connection_, |
47 GetSocket().Pass(), | 47 GetSocket().Pass(), |
48 nullptr, | 48 nullptr, |
49 &transport_security_state_, | 49 &transport_security_state_, |
50 make_scoped_ptr((QuicServerInfo*)nullptr), | 50 make_scoped_ptr((QuicServerInfo*)nullptr), |
51 DefaultQuicConfig(), | 51 DefaultQuicConfig(), |
52 "CONNECTION_UNKNOWN", | 52 "CONNECTION_UNKNOWN", |
53 base::TimeTicks::Now(), | 53 base::TimeTicks::Now(), |
54 base::MessageLoop::current()->message_loop_proxy().get(), | 54 base::MessageLoop::current()->task_runner().get(), |
55 &net_log_) { | 55 &net_log_) { |
56 session_.InitializeSession(QuicServerId(kServerHostname, kServerPort, | 56 session_.InitializeSession(QuicServerId(kServerHostname, kServerPort, |
57 /*is_secure=*/false, | 57 /*is_secure=*/false, |
58 PRIVACY_MODE_DISABLED), | 58 PRIVACY_MODE_DISABLED), |
59 &crypto_config_, nullptr); | 59 &crypto_config_, nullptr); |
60 // Advance the time, because timers do not like uninitialized times. | 60 // Advance the time, because timers do not like uninitialized times. |
61 connection_->AdvanceTime(QuicTime::Delta::FromSeconds(1)); | 61 connection_->AdvanceTime(QuicTime::Delta::FromSeconds(1)); |
62 } | 62 } |
63 | 63 |
64 void TearDown() override { | 64 void TearDown() override { |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 session_.OnProofVerifyDetailsAvailable(details); | 232 session_.OnProofVerifyDetailsAvailable(details); |
233 CompleteCryptoHandshake(); | 233 CompleteCryptoHandshake(); |
234 QuicClientSessionPeer::SetChannelIDSent(&session_, true); | 234 QuicClientSessionPeer::SetChannelIDSent(&session_, true); |
235 | 235 |
236 EXPECT_TRUE(session_.CanPool("mail.example.org", PRIVACY_MODE_DISABLED)); | 236 EXPECT_TRUE(session_.CanPool("mail.example.org", PRIVACY_MODE_DISABLED)); |
237 } | 237 } |
238 | 238 |
239 } // namespace | 239 } // namespace |
240 } // namespace test | 240 } // namespace test |
241 } // namespace net | 241 } // namespace net |
OLD | NEW |