| Index: net/tools/quic/quic_dispatcher.cc
|
| diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc
|
| index 4a1df9c1c95054948e08895a13c578d7d0a52783..a87faebe5487ad35309aeaae689982e8aea5d4ad 100644
|
| --- a/net/tools/quic/quic_dispatcher.cc
|
| +++ b/net/tools/quic/quic_dispatcher.cc
|
| @@ -194,7 +194,8 @@ QuicDispatcher::QuicDispatcher(
|
| std::unique_ptr<QuicConnectionHelperInterface> helper,
|
| std::unique_ptr<QuicCryptoServerStream::Helper> session_helper,
|
| std::unique_ptr<QuicAlarmFactory> alarm_factory)
|
| - : config_(config),
|
| + : num_push_promise_sent_(0),
|
| + config_(config),
|
| crypto_config_(crypto_config),
|
| compressed_certs_cache_(
|
| QuicCompressedCertsCache::kQuicCompressedCertsCacheSize),
|
| @@ -526,6 +527,8 @@ void QuicDispatcher::OnWriteBlocked(
|
|
|
| void QuicDispatcher::OnRstStreamReceived(const QuicRstStreamFrame& frame) {}
|
|
|
| +void QuicDispatcher::OnPushPromiseSent() {}
|
| +
|
| void QuicDispatcher::OnConnectionAddedToTimeWaitList(
|
| QuicConnectionId connection_id) {
|
| QUIC_DLOG(INFO) << "Connection " << connection_id
|
|
|