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_SPDY_BUFFERED_SPDY_FRAMER_H_ | 5 #ifndef NET_SPDY_BUFFERED_SPDY_FRAMER_H_ |
6 #define NET_SPDY_BUFFERED_SPDY_FRAMER_H_ | 6 #define NET_SPDY_BUFFERED_SPDY_FRAMER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/gtest_prod_util.h" | |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
14 #include "net/socket/next_proto.h" | 13 #include "net/socket/next_proto.h" |
15 #include "net/spdy/spdy_framer.h" | 14 #include "net/spdy/spdy_framer.h" |
16 #include "net/spdy/spdy_header_block.h" | 15 #include "net/spdy/spdy_header_block.h" |
17 #include "net/spdy/spdy_protocol.h" | 16 #include "net/spdy/spdy_protocol.h" |
18 | 17 |
19 namespace net { | 18 namespace net { |
20 | 19 |
21 // Returns the SPDY major version corresponding to the given NextProto | 20 // Returns the SPDY major version corresponding to the given NextProto |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 bool unidirectional; | 286 bool unidirectional; |
288 }; | 287 }; |
289 scoped_ptr<ControlFrameFields> control_frame_fields_; | 288 scoped_ptr<ControlFrameFields> control_frame_fields_; |
290 | 289 |
291 DISALLOW_COPY_AND_ASSIGN(BufferedSpdyFramer); | 290 DISALLOW_COPY_AND_ASSIGN(BufferedSpdyFramer); |
292 }; | 291 }; |
293 | 292 |
294 } // namespace net | 293 } // namespace net |
295 | 294 |
296 #endif // NET_SPDY_BUFFERED_SPDY_FRAMER_H_ | 295 #endif // NET_SPDY_BUFFERED_SPDY_FRAMER_H_ |
OLD | NEW |