| Index: net/quic/test_tools/quic_stream_factory_peer.cc
|
| diff --git a/net/quic/test_tools/quic_stream_factory_peer.cc b/net/quic/test_tools/quic_stream_factory_peer.cc
|
| index 99c4ef3feba49b7daac020db1ca5f79749d9e907..094f51da3e01aad5faba2c76c3075394cee44767 100644
|
| --- a/net/quic/test_tools/quic_stream_factory_peer.cc
|
| +++ b/net/quic/test_tools/quic_stream_factory_peer.cc
|
| @@ -161,5 +161,15 @@ void QuicStreamFactoryPeer::CacheDummyServerConfig(
|
| clock.WallNow());
|
| }
|
|
|
| +QuicClientPushPromiseIndex* QuicStreamFactoryPeer::GetPushPromiseIndex(
|
| + QuicStreamFactory* factory) {
|
| + return &factory->push_promise_index_;
|
| +}
|
| +
|
| +int QuicStreamFactoryPeer::GetNumPushStreamsCreated(
|
| + QuicStreamFactory* factory) {
|
| + return factory->num_push_streams_created_;
|
| +}
|
| +
|
| } // namespace test
|
| } // namespace net
|
|
|