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

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

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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
« no previous file with comments | « net/quic/quic_received_packet_manager.cc ('k') | net/quic/quic_reliable_client_stream_test.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 // NOTE: This code is not shared between Google and Chrome. 5 // NOTE: This code is not shared between Google and Chrome.
6 6
7 #ifndef NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ 7 #ifndef NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_
8 #define NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ 8 #define NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_
9 9
10 #include <stddef.h>
11
12 #include "base/macros.h"
10 #include "net/base/ip_endpoint.h" 13 #include "net/base/ip_endpoint.h"
11 #include "net/base/upload_data_stream.h" 14 #include "net/base/upload_data_stream.h"
12 #include "net/http/http_request_info.h" 15 #include "net/http/http_request_info.h"
13 #include "net/http/http_response_info.h" 16 #include "net/http/http_response_info.h"
14 #include "net/http/http_stream.h" 17 #include "net/http/http_stream.h"
15 #include "net/quic/quic_spdy_stream.h" 18 #include "net/quic/quic_spdy_stream.h"
16 19
17 namespace net { 20 namespace net {
18 21
19 class QuicSpdySession; 22 class QuicSpdySession;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 CompletionCallback callback_; 107 CompletionCallback callback_;
105 108
106 base::WeakPtrFactory<QuicReliableClientStream> weak_factory_; 109 base::WeakPtrFactory<QuicReliableClientStream> weak_factory_;
107 110
108 DISALLOW_COPY_AND_ASSIGN(QuicReliableClientStream); 111 DISALLOW_COPY_AND_ASSIGN(QuicReliableClientStream);
109 }; 112 };
110 113
111 } // namespace net 114 } // namespace net
112 115
113 #endif // NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_ 116 #endif // NET_QUIC_QUIC_RELIABLE_CLIENT_STREAM_H_
OLDNEW
« no previous file with comments | « net/quic/quic_received_packet_manager.cc ('k') | net/quic/quic_reliable_client_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698