| 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 <cstdint> | 11 #include <cstdint> |
| 12 #include <map> | 12 #include <map> |
| 13 #include <memory> | 13 #include <memory> |
| 14 #include <utility> | 14 #include <utility> |
| 15 | 15 |
| 16 #include "base/sys_byteorder.h" | 16 #include "base/sys_byteorder.h" |
| 17 #include "net/base/net_export.h" | 17 #include "net/base/net_export.h" |
| 18 #include "net/spdy/hpack/hpack_decoder_interface.h" | 18 #include "net/spdy/chromium/spdy_flags.h" |
| 19 #include "net/spdy/hpack/hpack_encoder.h" | 19 #include "net/spdy/core/hpack/hpack_decoder_interface.h" |
| 20 #include "net/spdy/core/hpack/hpack_encoder.h" |
| 21 #include "net/spdy/core/spdy_alt_svc_wire_format.h" |
| 22 #include "net/spdy/core/spdy_header_block.h" |
| 23 #include "net/spdy/core/spdy_headers_handler_interface.h" |
| 24 #include "net/spdy/core/spdy_protocol.h" |
| 25 #include "net/spdy/core/zero_copy_output_buffer.h" |
| 20 #include "net/spdy/platform/api/spdy_string.h" | 26 #include "net/spdy/platform/api/spdy_string.h" |
| 21 #include "net/spdy/platform/api/spdy_string_piece.h" | 27 #include "net/spdy/platform/api/spdy_string_piece.h" |
| 22 #include "net/spdy/spdy_alt_svc_wire_format.h" | |
| 23 #include "net/spdy/spdy_flags.h" | |
| 24 #include "net/spdy/spdy_header_block.h" | |
| 25 #include "net/spdy/spdy_headers_handler_interface.h" | |
| 26 #include "net/spdy/spdy_protocol.h" | |
| 27 #include "net/spdy/zero_copy_output_buffer.h" | |
| 28 | 28 |
| 29 namespace net { | 29 namespace net { |
| 30 | 30 |
| 31 class HttpProxyClientSocketPoolTest; | 31 class HttpProxyClientSocketPoolTest; |
| 32 class HttpNetworkLayer; | 32 class HttpNetworkLayer; |
| 33 class HttpNetworkTransactionTest; | 33 class HttpNetworkTransactionTest; |
| 34 class SpdyHttpStreamTest; | 34 class SpdyHttpStreamTest; |
| 35 class SpdyNetworkTransactionTest; | 35 class SpdyNetworkTransactionTest; |
| 36 class SpdyProxyClientSocketTest; | 36 class SpdyProxyClientSocketTest; |
| 37 class SpdySessionTest; | 37 class SpdySessionTest; |
| (...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 // rather than reading all available input. | 948 // rather than reading all available input. |
| 949 bool process_single_input_frame_ = false; | 949 bool process_single_input_frame_ = false; |
| 950 | 950 |
| 951 // Latched value of FLAGS_chromium_http2_flag_remove_rewritelength. | 951 // Latched value of FLAGS_chromium_http2_flag_remove_rewritelength. |
| 952 bool skip_rewritelength_ = false; | 952 bool skip_rewritelength_ = false; |
| 953 }; | 953 }; |
| 954 | 954 |
| 955 } // namespace net | 955 } // namespace net |
| 956 | 956 |
| 957 #endif // NET_SPDY_SPDY_FRAMER_H_ | 957 #endif // NET_SPDY_SPDY_FRAMER_H_ |
| OLD | NEW |