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

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

Issue 14223008: net: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/quic_packet_creator.h ('k') | net/quic/test_tools/crypto_test_utils.cc » ('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/hash_tables.h"
19 #include "base/logging.h" 19 #include "base/logging.h"
20 #include "base/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<<;
29 29
30 class QuicPacket; 30 class QuicPacket;
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 NET_EXPORT_PRIVATE friend std::ostream& operator<<( 656 NET_EXPORT_PRIVATE friend std::ostream& operator<<(
657 std::ostream& os, const QuicConsumedData& s); 657 std::ostream& os, const QuicConsumedData& s);
658 658
659 size_t bytes_consumed; 659 size_t bytes_consumed;
660 bool fin_consumed; 660 bool fin_consumed;
661 }; 661 };
662 662
663 } // namespace net 663 } // namespace net
664 664
665 #endif // NET_QUIC_QUIC_PROTOCOL_H_ 665 #endif // NET_QUIC_QUIC_PROTOCOL_H_
OLDNEW
« no previous file with comments | « net/quic/quic_packet_creator.h ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698