| 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_SPDY_FRAMER_H_ | 5 #ifndef NET_SPDY_SPDY_FRAMER_H_ |
| 6 #define NET_SPDY_SPDY_FRAMER_H_ | 6 #define NET_SPDY_SPDY_FRAMER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <utility> | 14 #include <utility> |
| 15 | 15 |
| 16 #include "base/strings/string_piece.h" | 16 #include "base/strings/string_piece.h" |
| 17 #include "base/sys_byteorder.h" | 17 #include "base/sys_byteorder.h" |
| 18 #include "net/base/net_export.h" | 18 #include "net/base/net_export.h" |
| 19 #include "net/spdy/hpack/hpack_decoder.h" | |
| 20 #include "net/spdy/hpack/hpack_decoder_interface.h" | 19 #include "net/spdy/hpack/hpack_decoder_interface.h" |
| 21 #include "net/spdy/hpack/hpack_encoder.h" | 20 #include "net/spdy/hpack/hpack_encoder.h" |
| 22 #include "net/spdy/spdy_alt_svc_wire_format.h" | 21 #include "net/spdy/spdy_alt_svc_wire_format.h" |
| 23 #include "net/spdy/spdy_flags.h" | 22 #include "net/spdy/spdy_flags.h" |
| 24 #include "net/spdy/spdy_header_block.h" | 23 #include "net/spdy/spdy_header_block.h" |
| 25 #include "net/spdy/spdy_headers_block_parser.h" | 24 #include "net/spdy/spdy_headers_block_parser.h" |
| 26 #include "net/spdy/spdy_headers_handler_interface.h" | 25 #include "net/spdy/spdy_headers_handler_interface.h" |
| 27 #include "net/spdy/spdy_protocol.h" | 26 #include "net/spdy/spdy_protocol.h" |
| 28 | 27 |
| 29 namespace net { | 28 namespace net { |
| (...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 bool end_stream_when_done_; | 775 bool end_stream_when_done_; |
| 777 | 776 |
| 778 // If true, then ProcessInput returns after processing a full frame, | 777 // If true, then ProcessInput returns after processing a full frame, |
| 779 // rather than reading all available input. | 778 // rather than reading all available input. |
| 780 bool process_single_input_frame_ = false; | 779 bool process_single_input_frame_ = false; |
| 781 }; | 780 }; |
| 782 | 781 |
| 783 } // namespace net | 782 } // namespace net |
| 784 | 783 |
| 785 #endif // NET_SPDY_SPDY_FRAMER_H_ | 784 #endif // NET_SPDY_SPDY_FRAMER_H_ |
| OLD | NEW |