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

Side by Side Diff: net/spdy/hpack/hpack_header_table.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_entry.h ('k') | net/spdy/hpack/hpack_header_table_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_HEADER_TABLE_H_ 5 #ifndef NET_SPDY_HPACK_HEADER_TABLE_H_
6 #define NET_SPDY_HPACK_HEADER_TABLE_H_ 6 #define NET_SPDY_HPACK_HEADER_TABLE_H_
7 7
8 #include <cstddef> 8 #include <cstddef>
9 #include <deque> 9 #include <deque>
10 #include <set> 10 #include <set>
11 11
12 #include "base/basictypes.h"
13 #include "base/macros.h" 12 #include "base/macros.h"
14 #include "net/base/net_export.h" 13 #include "net/base/net_export.h"
15 #include "net/spdy/hpack/hpack_entry.h" 14 #include "net/spdy/hpack/hpack_entry.h"
16 15
17 // All section references below are to http://tools.ietf.org/html/rfc7541. 16 // All section references below are to http://tools.ietf.org/html/rfc7541.
18 17
19 namespace net { 18 namespace net {
20 19
21 namespace test { 20 namespace test {
22 class HpackHeaderTablePeer; 21 class HpackHeaderTablePeer;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 // Total number of table insertions which have occurred. Referenced by 123 // Total number of table insertions which have occurred. Referenced by
125 // IndexOf() for determination of an HpackEntry's table index. 124 // IndexOf() for determination of an HpackEntry's table index.
126 size_t total_insertions_; 125 size_t total_insertions_;
127 126
128 DISALLOW_COPY_AND_ASSIGN(HpackHeaderTable); 127 DISALLOW_COPY_AND_ASSIGN(HpackHeaderTable);
129 }; 128 };
130 129
131 } // namespace net 130 } // namespace net
132 131
133 #endif // NET_SPDY_HPACK_HEADER_TABLE_H_ 132 #endif // NET_SPDY_HPACK_HEADER_TABLE_H_
OLDNEW
« no previous file with comments | « net/spdy/hpack/hpack_entry.h ('k') | net/spdy/hpack/hpack_header_table_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698