| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/test_tools/quic_stream_factory_peer.h" | 5 #include "net/quic/test_tools/quic_stream_factory_peer.h" |
| 6 | 6 |
| 7 #include "net/quic/crypto/quic_crypto_client_config.h" | 7 #include "net/quic/crypto/quic_crypto_client_config.h" |
| 8 #include "net/quic/quic_chromium_client_session.h" | 8 #include "net/quic/quic_chromium_client_session.h" |
| 9 #include "net/quic/quic_clock.h" | 9 #include "net/quic/quic_clock.h" |
| 10 #include "net/quic/quic_http_stream.h" | 10 #include "net/quic/quic_http_stream.h" |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 string source_address_token("test_source_address_token"); | 150 string source_address_token("test_source_address_token"); |
| 151 string signature("test_signature"); | 151 string signature("test_signature"); |
| 152 string test_cert("test_cert"); | 152 string test_cert("test_cert"); |
| 153 vector<string> certs; | 153 vector<string> certs; |
| 154 certs.push_back(test_cert); | 154 certs.push_back(test_cert); |
| 155 | 155 |
| 156 QuicCryptoClientConfig* crypto_config = &factory->crypto_config_; | 156 QuicCryptoClientConfig* crypto_config = &factory->crypto_config_; |
| 157 QuicCryptoClientConfig::CachedState* cached = | 157 QuicCryptoClientConfig::CachedState* cached = |
| 158 crypto_config->LookupOrCreate(quic_server_id); | 158 crypto_config->LookupOrCreate(quic_server_id); |
| 159 QuicClock clock; | 159 QuicClock clock; |
| 160 cached->Initialize(server_config, source_address_token, certs, "", signature, | 160 cached->Initialize(server_config, source_address_token, certs, "", "", |
| 161 clock.WallNow()); | 161 signature, clock.WallNow()); |
| 162 } | 162 } |
| 163 | 163 |
| 164 } // namespace test | 164 } // namespace test |
| 165 } // namespace net | 165 } // namespace net |
| OLD | NEW |