OLD | NEW |
| (Empty) |
1 // 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 NET_QUIC_TEST_TOOLS_QUIC_HEADERS_STREAM_PEER_H_ | |
6 #define NET_QUIC_TEST_TOOLS_QUIC_HEADERS_STREAM_PEER_H_ | |
7 | |
8 #include "net/spdy/spdy_framer.h" | |
9 | |
10 namespace net { | |
11 | |
12 class QuicHeadersStream; | |
13 | |
14 namespace test { | |
15 | |
16 class QuicHeadersStreamPeer { | |
17 public: | |
18 static const SpdyFramer& GetSpdyFramer(QuicHeadersStream* stream); | |
19 | |
20 private: | |
21 DISALLOW_COPY_AND_ASSIGN(QuicHeadersStreamPeer); | |
22 }; | |
23 | |
24 } // namespace test | |
25 | |
26 } // namespace net | |
27 | |
28 #endif // NET_QUIC_TEST_TOOLS_QUIC_HEADERS_STREAM_PEER_H_ | |
OLD | NEW |