OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ | 5 #ifndef NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ |
6 #define NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ | 6 #define NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
| 10 #include "base/basictypes.h" |
10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
11 #include "net/quic/quic_framer.h" | 12 #include "net/quic/quic_framer.h" |
12 #include "net/quic/quic_protocol.h" | 13 #include "net/quic/quic_protocol.h" |
13 | 14 |
14 namespace net { | 15 namespace net { |
15 | 16 |
16 class CryptoHandshakeMessage; | 17 class CryptoHandshakeMessage; |
17 struct QuicAckFrame; | 18 struct QuicAckFrame; |
18 class QuicConnection; | 19 class QuicConnection; |
19 class QuicConnectionVisitorInterface; | 20 class QuicConnectionVisitorInterface; |
(...skipping 30 matching lines...) Expand all Loading... |
50 QuicFramer framer_; | 51 QuicFramer framer_; |
51 scoped_ptr<SimpleFramerVisitor> visitor_; | 52 scoped_ptr<SimpleFramerVisitor> visitor_; |
52 DISALLOW_COPY_AND_ASSIGN(SimpleQuicFramer); | 53 DISALLOW_COPY_AND_ASSIGN(SimpleQuicFramer); |
53 }; | 54 }; |
54 | 55 |
55 } // namespace test | 56 } // namespace test |
56 | 57 |
57 } // namespace net | 58 } // namespace net |
58 | 59 |
59 #endif // NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ | 60 #endif // NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_ |
OLD | NEW |