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

Side by Side Diff: net/spdy/hpack/hpack_encoder.h

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 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/hpack/hpack_decoder_test.cc ('k') | net/spdy/hpack/hpack_encoder_test.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_HPACK_ENCODER_H_ 5 #ifndef NET_SPDY_HPACK_ENCODER_H_
6 #define NET_SPDY_HPACK_ENCODER_H_ 6 #define NET_SPDY_HPACK_ENCODER_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 #include <string> 11 #include <string>
10 #include <utility> 12 #include <utility>
11 #include <vector> 13 #include <vector>
12 14
13 #include "base/basictypes.h"
14 #include "base/macros.h" 15 #include "base/macros.h"
15 #include "base/strings/string_piece.h" 16 #include "base/strings/string_piece.h"
16 #include "net/base/net_export.h" 17 #include "net/base/net_export.h"
17 #include "net/spdy/hpack/hpack_header_table.h" 18 #include "net/spdy/hpack/hpack_header_table.h"
18 #include "net/spdy/hpack/hpack_output_stream.h" 19 #include "net/spdy/hpack/hpack_output_stream.h"
19 #include "net/spdy/spdy_protocol.h" 20 #include "net/spdy/spdy_protocol.h"
20 21
21 // An HpackEncoder encodes header sets as outlined in 22 // An HpackEncoder encodes header sets as outlined in
22 // http://tools.ietf.org/html/rfc7541. 23 // http://tools.ietf.org/html/rfc7541.
23 24
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 size_t min_table_size_setting_received_; 92 size_t min_table_size_setting_received_;
92 bool allow_huffman_compression_; 93 bool allow_huffman_compression_;
93 bool should_emit_table_size_; 94 bool should_emit_table_size_;
94 95
95 DISALLOW_COPY_AND_ASSIGN(HpackEncoder); 96 DISALLOW_COPY_AND_ASSIGN(HpackEncoder);
96 }; 97 };
97 98
98 } // namespace net 99 } // namespace net
99 100
100 #endif // NET_SPDY_HPACK_ENCODER_H_ 101 #endif // NET_SPDY_HPACK_ENCODER_H_
OLDNEW
« no previous file with comments | « net/spdy/hpack/hpack_decoder_test.cc ('k') | net/spdy/hpack/hpack_encoder_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698