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

Side by Side Diff: net/http/http_stream_parser.h

Issue 2531373002: net: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase on top of master branch Created 4 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/http/http_stream_factory_impl_request.h ('k') | net/http/proxy_client_socket.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_HTTP_HTTP_STREAM_PARSER_H_ 5 #ifndef NET_HTTP_HTTP_STREAM_PARSER_H_
6 #define NET_HTTP_HTTP_STREAM_PARSER_H_ 6 #define NET_HTTP_HTTP_STREAM_PARSER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 14 matching lines...) Expand all
25 namespace net { 25 namespace net {
26 26
27 class ClientSocketHandle; 27 class ClientSocketHandle;
28 class DrainableIOBuffer; 28 class DrainableIOBuffer;
29 class GrowableIOBuffer; 29 class GrowableIOBuffer;
30 class HttpChunkedDecoder; 30 class HttpChunkedDecoder;
31 struct HttpRequestInfo; 31 struct HttpRequestInfo;
32 class HttpRequestHeaders; 32 class HttpRequestHeaders;
33 class HttpResponseInfo; 33 class HttpResponseInfo;
34 class IOBuffer; 34 class IOBuffer;
35 class IOBufferWithSize;
36 class SSLCertRequestInfo; 35 class SSLCertRequestInfo;
37 class SSLInfo; 36 class SSLInfo;
38 class UploadDataStream; 37 class UploadDataStream;
39 38
40 class NET_EXPORT_PRIVATE HttpStreamParser { 39 class NET_EXPORT_PRIVATE HttpStreamParser {
41 public: 40 public:
42 // Any data in |read_buffer| will be used before reading from the socket 41 // Any data in |read_buffer| will be used before reading from the socket
43 // and any data left over after parsing the stream will be put into 42 // and any data left over after parsing the stream will be put into
44 // |read_buffer|. The left over data will start at offset 0 and the 43 // |read_buffer|. The left over data will start at offset 0 and the
45 // buffer's offset will be set to the first free byte. |read_buffer| may 44 // buffer's offset will be set to the first free byte. |read_buffer| may
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 int upload_error_; 288 int upload_error_;
290 289
291 base::WeakPtrFactory<HttpStreamParser> weak_ptr_factory_; 290 base::WeakPtrFactory<HttpStreamParser> weak_ptr_factory_;
292 291
293 DISALLOW_COPY_AND_ASSIGN(HttpStreamParser); 292 DISALLOW_COPY_AND_ASSIGN(HttpStreamParser);
294 }; 293 };
295 294
296 } // namespace net 295 } // namespace net
297 296
298 #endif // NET_HTTP_HTTP_STREAM_PARSER_H_ 297 #endif // NET_HTTP_HTTP_STREAM_PARSER_H_
OLDNEW
« no previous file with comments | « net/http/http_stream_factory_impl_request.h ('k') | net/http/proxy_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698