Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: net/spdy/spdy_framer.h

Issue 2553683006: Add HpackDecoder2. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/spdy/spdy_flags.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « net/spdy/spdy_flags.cc ('k') | net/spdy/spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698