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

Side by Side Diff: net/quic/crypto/strike_register.h

Issue 242643009: Added DISALLOW_COPY_AND_ASSIGN to disable copy/assign. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merging with TOT and internal CL: 65311983 Created 6 years, 8 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/quic/crypto/source_address_token.h ('k') | net/quic/iovector.h » ('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 (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
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_
OLDNEW
« no previous file with comments | « net/quic/crypto/source_address_token.h ('k') | net/quic/iovector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698