blob: 4b2e2070d0abe9047d8f302b28f37e65f6042822 [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// Copyright 2016 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef QUICHE_QUIC_TEST_TOOLS_QUIC_CLIENT_PROMISED_INFO_PEER_H_
6#define QUICHE_QUIC_TEST_TOOLS_QUIC_CLIENT_PROMISED_INFO_PEER_H_
7
QUICHE teama6ef0a62019-03-07 20:34:33 -05008#include "net/third_party/quiche/src/quic/core/http/quic_client_promised_info.h"
9
10namespace quic {
11namespace test {
12
13class QuicClientPromisedInfoPeer {
14 public:
15 QuicClientPromisedInfoPeer() = delete;
16
17 static QuicAlarm* GetAlarm(QuicClientPromisedInfo* promised_stream);
18};
19} // namespace test
20} // namespace quic
21
22#endif // QUICHE_QUIC_TEST_TOOLS_QUIC_CLIENT_PROMISED_INFO_PEER_H_