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

Side by Side Diff: net/quic/quic_protocol.h

Issue 16667019: Rename base/hash_tables to base/containers/hash_tables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/quic_framer_test.cc ('k') | net/quic/quic_session.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_QUIC_PROTOCOL_H_ 5 #ifndef NET_QUIC_QUIC_PROTOCOL_H_
6 #define NET_QUIC_QUIC_PROTOCOL_H_ 6 #define NET_QUIC_QUIC_PROTOCOL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <limits> 9 #include <limits>
10 #include <map> 10 #include <map>
11 #include <ostream> 11 #include <ostream>
12 #include <set> 12 #include <set>
13 #include <string> 13 #include <string>
14 #include <utility> 14 #include <utility>
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/basictypes.h" 17 #include "base/basictypes.h"
18 #include "base/hash_tables.h" 18 #include "base/containers/hash_tables.h"
19 #include "base/logging.h" 19 #include "base/logging.h"
20 #include "base/strings/string_piece.h" 20 #include "base/strings/string_piece.h"
21 #include "net/base/int128.h" 21 #include "net/base/int128.h"
22 #include "net/base/net_export.h" 22 #include "net/base/net_export.h"
23 #include "net/quic/quic_bandwidth.h" 23 #include "net/quic/quic_bandwidth.h"
24 #include "net/quic/quic_time.h" 24 #include "net/quic/quic_time.h"
25 25
26 namespace net { 26 namespace net {
27 27
28 using ::operator<<; 28 using ::operator<<;
(...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 NET_EXPORT_PRIVATE friend std::ostream& operator<<( 770 NET_EXPORT_PRIVATE friend std::ostream& operator<<(
771 std::ostream& os, const QuicConsumedData& s); 771 std::ostream& os, const QuicConsumedData& s);
772 772
773 size_t bytes_consumed; 773 size_t bytes_consumed;
774 bool fin_consumed; 774 bool fin_consumed;
775 }; 775 };
776 776
777 } // namespace net 777 } // namespace net
778 778
779 #endif // NET_QUIC_QUIC_PROTOCOL_H_ 779 #endif // NET_QUIC_QUIC_PROTOCOL_H_
OLDNEW
« no previous file with comments | « net/quic/quic_framer_test.cc ('k') | net/quic/quic_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698