| Index: net/quic/test_tools/quic_time_wait_list_manager_peer.h
|
| diff --git a/net/quic/test_tools/quic_time_wait_list_manager_peer.h b/net/quic/test_tools/quic_time_wait_list_manager_peer.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c2635962e3dcb4c7967e47fd81a7eb067649f964
|
| --- /dev/null
|
| +++ b/net/quic/test_tools/quic_time_wait_list_manager_peer.h
|
| @@ -0,0 +1,33 @@
|
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef NET_QUIC_TEST_TOOLS_QUIC_TIME_WAIT_LIST_MANAGER_PEER_H_
|
| +#define NET_QUIC_TEST_TOOLS_QUIC_TIME_WAIT_LIST_MANAGER_PEER_H_
|
| +
|
| +#include "net/tools/quic/quic_time_wait_list_manager.h"
|
| +
|
| +namespace net {
|
| +namespace test {
|
| +
|
| +class QuicTimeWaitListManagerPeer {
|
| + public:
|
| + static bool ShouldSendResponse(QuicTimeWaitListManager* manager,
|
| + int received_packet_count);
|
| +
|
| + static QuicTime::Delta time_wait_period(QuicTimeWaitListManager* manager);
|
| +
|
| + static QuicVersion GetQuicVersionFromConnectionId(
|
| + QuicTimeWaitListManager* manager,
|
| + QuicConnectionId connection_id);
|
| +
|
| + static QuicAlarm* expiration_alarm(QuicTimeWaitListManager* manager);
|
| +
|
| + static void set_clock(QuicTimeWaitListManager* manager,
|
| + const QuicClock* clock);
|
| +};
|
| +
|
| +} // namespace test
|
| +} // namespace net
|
| +
|
| +#endif // NET_QUIC_TEST_TOOLS_QUIC_TIME_WAIT_LIST_MANAGER_PEER_H_
|
|
|