OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_QUIC_CRYPTO_STRIKE_REGISTER_H_ | 5 #ifndef NET_QUIC_CRYPTO_STRIKE_REGISTER_H_ |
6 #define NET_QUIC_CRYPTO_STRIKE_REGISTER_H_ | 6 #define NET_QUIC_CRYPTO_STRIKE_REGISTER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 uint32 horizon_; | 174 uint32 horizon_; |
175 bool horizon_valid_; | 175 bool horizon_valid_; |
176 | 176 |
177 uint32 internal_node_free_head_; | 177 uint32 internal_node_free_head_; |
178 uint32 external_node_free_head_; | 178 uint32 external_node_free_head_; |
179 uint32 internal_node_head_; | 179 uint32 internal_node_head_; |
180 // internal_nodes_ can't be a scoped_ptr because the type isn't defined in | 180 // internal_nodes_ can't be a scoped_ptr because the type isn't defined in |
181 // this header. | 181 // this header. |
182 InternalNode* internal_nodes_; | 182 InternalNode* internal_nodes_; |
183 scoped_ptr<uint8[]> external_nodes_; | 183 scoped_ptr<uint8[]> external_nodes_; |
| 184 |
| 185 DISALLOW_COPY_AND_ASSIGN(StrikeRegister); |
184 }; | 186 }; |
185 | 187 |
186 } // namespace net | 188 } // namespace net |
187 | 189 |
188 #endif // NET_QUIC_CRYPTO_STRIKE_REGISTER_H_ | 190 #endif // NET_QUIC_CRYPTO_STRIKE_REGISTER_H_ |
OLD | NEW |