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

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

Issue 3136025: Remove obviously unneeded forward declarations from headers under src/{app,base,net}. (Closed)
Patch Set: it was the best of times Created 10 years, 4 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_network_layer.h ('k') | net/http/http_proxy_client_socket_pool.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_NETWORK_TRANSACTION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 6 #define NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/gtest_prod_util.h" 12 #include "base/gtest_prod_util.h"
13 #include "base/ref_counted.h" 13 #include "base/ref_counted.h"
14 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
15 #include "base/time.h" 15 #include "base/time.h"
16 #include "net/base/net_log.h" 16 #include "net/base/net_log.h"
17 #include "net/base/request_priority.h" 17 #include "net/base/request_priority.h"
18 #include "net/base/ssl_config_service.h" 18 #include "net/base/ssl_config_service.h"
19 #include "net/http/http_auth.h" 19 #include "net/http/http_auth.h"
20 #include "net/http/http_response_info.h" 20 #include "net/http/http_response_info.h"
21 #include "net/http/http_transaction.h" 21 #include "net/http/http_transaction.h"
22 #include "net/http/stream_factory.h" 22 #include "net/http/stream_factory.h"
23 #include "net/proxy/proxy_service.h" 23 #include "net/proxy/proxy_service.h"
24 24
25 namespace net { 25 namespace net {
26 26
27 class ClientSocketFactory;
28 class ClientSocketHandle;
29 class HttpAuthController; 27 class HttpAuthController;
30 class HttpNetworkSession; 28 class HttpNetworkSession;
31 class HttpRequestHeaders;
32 class HttpStream; 29 class HttpStream;
33 class HttpStreamHandle; 30 class HttpStreamHandle;
34 class HttpStreamRequest;
35 class IOBuffer; 31 class IOBuffer;
36 32
37 class HttpNetworkTransaction : public HttpTransaction, 33 class HttpNetworkTransaction : public HttpTransaction,
38 public StreamFactory::StreamRequestDelegate { 34 public StreamFactory::StreamRequestDelegate {
39 public: 35 public:
40 explicit HttpNetworkTransaction(HttpNetworkSession* session); 36 explicit HttpNetworkTransaction(HttpNetworkSession* session);
41 37
42 virtual ~HttpNetworkTransaction(); 38 virtual ~HttpNetworkTransaction();
43 39
44 // HttpTransaction methods: 40 // HttpTransaction methods:
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 bool establishing_tunnel_; 238 bool establishing_tunnel_;
243 239
244 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction); 240 DISALLOW_COPY_AND_ASSIGN(HttpNetworkTransaction);
245 }; 241 };
246 242
247 int ConvertRequestPriorityToSpdyPriority(RequestPriority priority); 243 int ConvertRequestPriorityToSpdyPriority(RequestPriority priority);
248 244
249 } // namespace net 245 } // namespace net
250 246
251 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_ 247 #endif // NET_HTTP_HTTP_NETWORK_TRANSACTION_H_
OLDNEW
« no previous file with comments | « net/http/http_network_layer.h ('k') | net/http/http_proxy_client_socket_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698