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_ENTRY_H_ | 5 #ifndef NET_SPDY_HPACK_HPACK_ENTRY_H_ |
6 #define NET_SPDY_HPACK_ENTRY_H_ | 6 #define NET_SPDY_HPACK_HPACK_ENTRY_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
14 #include "net/base/net_export.h" | 14 #include "net/base/net_export.h" |
15 | 15 |
16 // All section references below are to | 16 // All section references below are to |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 size_t insertion_index_; | 97 size_t insertion_index_; |
98 | 98 |
99 EntryType type_; | 99 EntryType type_; |
100 | 100 |
101 // For HpackHeaderTable::DebugVisitorInterface | 101 // For HpackHeaderTable::DebugVisitorInterface |
102 int64_t time_added_; | 102 int64_t time_added_; |
103 }; | 103 }; |
104 | 104 |
105 } // namespace net | 105 } // namespace net |
106 | 106 |
107 #endif // NET_SPDY_HPACK_ENTRY_H_ | 107 #endif // NET_SPDY_HPACK_HPACK_ENTRY_H_ |
OLD | NEW |