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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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, "", signature, |
161 clock.WallNow()); | 161 clock.WallNow()); |
162 } | 162 } |
163 | 163 |
| 164 QuicClientPushPromiseIndex* QuicStreamFactoryPeer::GetPushPromiseIndex( |
| 165 QuicStreamFactory* factory) { |
| 166 return &factory->push_promise_index_; |
| 167 } |
| 168 |
| 169 int QuicStreamFactoryPeer::GetNumPushStreamsCreated( |
| 170 QuicStreamFactory* factory) { |
| 171 return factory->num_push_streams_created_; |
| 172 } |
| 173 |
164 } // namespace test | 174 } // namespace test |
165 } // namespace net | 175 } // namespace net |
OLD | NEW |