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

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

Issue 2366893002: net: address review comments for NetLogWithSource renaming (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « net/http/http_basic_state.h ('k') | net/http/http_stream.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 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is 5 // HttpBasicStream is a simple implementation of HttpStream. It assumes it is
6 // not sharing a sharing with any other HttpStreams, therefore it just reads and 6 // not sharing a sharing with any other HttpStreams, therefore it just reads and
7 // writes directly to the Http Stream. 7 // writes directly to the Http Stream.
8 8
9 #ifndef NET_HTTP_HTTP_BASIC_STREAM_H_ 9 #ifndef NET_HTTP_HTTP_BASIC_STREAM_H_
10 #define NET_HTTP_HTTP_BASIC_STREAM_H_ 10 #define NET_HTTP_HTTP_BASIC_STREAM_H_
11 11
12 #include <stdint.h> 12 #include <stdint.h>
13 13
14 #include <memory> 14 #include <memory>
15 #include <string> 15 #include <string>
16 16
17 #include "base/macros.h" 17 #include "base/macros.h"
18 #include "net/base/net_export.h" 18 #include "net/base/net_export.h"
19 #include "net/http/http_basic_state.h" 19 #include "net/http/http_basic_state.h"
20 #include "net/http/http_stream.h" 20 #include "net/http/http_stream.h"
21 21
22 namespace net { 22 namespace net {
23 23
24 class NetLogWithSource;
25 class ClientSocketHandle; 24 class ClientSocketHandle;
26 class HttpResponseInfo; 25 class HttpResponseInfo;
27 struct HttpRequestInfo; 26 struct HttpRequestInfo;
28 class HttpRequestHeaders; 27 class HttpRequestHeaders;
29 class HttpStreamParser; 28 class HttpStreamParser;
30 class IOBuffer; 29 class IOBuffer;
30 class NetLogWithSource;
31 31
32 class NET_EXPORT_PRIVATE HttpBasicStream : public HttpStream { 32 class NET_EXPORT_PRIVATE HttpBasicStream : public HttpStream {
33 public: 33 public:
34 // Constructs a new HttpBasicStream. InitializeStream must be called to 34 // Constructs a new HttpBasicStream. InitializeStream must be called to
35 // initialize it correctly. 35 // initialize it correctly.
36 HttpBasicStream(std::unique_ptr<ClientSocketHandle> connection, 36 HttpBasicStream(std::unique_ptr<ClientSocketHandle> connection,
37 bool using_proxy, 37 bool using_proxy,
38 bool http_09_on_non_default_ports_enabled); 38 bool http_09_on_non_default_ports_enabled);
39 ~HttpBasicStream() override; 39 ~HttpBasicStream() override;
40 40
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 HttpStreamParser* parser() const { return state_.parser(); } 92 HttpStreamParser* parser() const { return state_.parser(); }
93 93
94 HttpBasicState state_; 94 HttpBasicState state_;
95 95
96 DISALLOW_COPY_AND_ASSIGN(HttpBasicStream); 96 DISALLOW_COPY_AND_ASSIGN(HttpBasicStream);
97 }; 97 };
98 98
99 } // namespace net 99 } // namespace net
100 100
101 #endif // NET_HTTP_HTTP_BASIC_STREAM_H_ 101 #endif // NET_HTTP_HTTP_BASIC_STREAM_H_
OLDNEW
« no previous file with comments | « net/http/http_basic_state.h ('k') | net/http/http_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698