| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |