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

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

Issue 265763011: Land recent SPDY changes (through 66310528) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « net/spdy/hpack_entry.h ('k') | net/spdy/hpack_header_table.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" 12 #include "base/basictypes.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "net/base/net_export.h" 14 #include "net/base/net_export.h"
15 #include "net/spdy/hpack_entry.h" 15 #include "net/spdy/hpack_entry.h"
16 16
17 // All section references below are to 17 // All section references below are to
18 // http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-06 18 // http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-07
19 19
20 namespace net { 20 namespace net {
21 21
22 namespace test { 22 namespace test {
23 class HpackHeaderTablePeer; 23 class HpackHeaderTablePeer;
24 } // namespace test 24 } // namespace test
25 25
26 // A data structure for both the header table (described in 3.1.2) and 26 // A data structure for both the header table (described in 3.1.2) and
27 // the reference set (3.1.3). 27 // the reference set (3.1.3).
28 class NET_EXPORT_PRIVATE HpackHeaderTable { 28 class NET_EXPORT_PRIVATE HpackHeaderTable {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 // Current number of dynamic entries. Referenced by static HpackEntry 128 // Current number of dynamic entries. Referenced by static HpackEntry
129 // instances for determination of table index. 129 // instances for determination of table index.
130 size_t dynamic_entries_count_; 130 size_t dynamic_entries_count_;
131 131
132 DISALLOW_COPY_AND_ASSIGN(HpackHeaderTable); 132 DISALLOW_COPY_AND_ASSIGN(HpackHeaderTable);
133 }; 133 };
134 134
135 } // namespace net 135 } // namespace net
136 136
137 #endif // NET_SPDY_HPACK_HEADER_TABLE_H_ 137 #endif // NET_SPDY_HPACK_HEADER_TABLE_H_
OLDNEW
« no previous file with comments | « net/spdy/hpack_entry.h ('k') | net/spdy/hpack_header_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698