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

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

Issue 2832973003: Split net/spdy into core and chromium subdirectories. (Closed)
Patch Set: Fix some more build rules. Created 3 years, 8 months 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/core/spdy_frame_reader_test.cc ('k') | net/spdy/core/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 <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
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_
OLDNEW
« no previous file with comments | « net/spdy/core/spdy_frame_reader_test.cc ('k') | net/spdy/core/spdy_framer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698