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

Side by Side Diff: net/http/http_stream_factory_impl_job.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.h ('k') | net/http/http_stream_factory_impl_request.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_FACTORY_IMPL_JOB_H_ 5 #ifndef NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_
6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ 6 #define NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 22 matching lines...) Expand all
33 33
34 namespace net { 34 namespace net {
35 35
36 class ClientSocketHandle; 36 class ClientSocketHandle;
37 class HttpAuthController; 37 class HttpAuthController;
38 class HttpNetworkSession; 38 class HttpNetworkSession;
39 class HttpStream; 39 class HttpStream;
40 class SpdySessionPool; 40 class SpdySessionPool;
41 class NetLog; 41 class NetLog;
42 struct SSLConfig; 42 struct SSLConfig;
43 class QuicHttpStream;
44 43
45 // An HttpStreamRequestImpl exists for each stream which is in progress of being 44 // An HttpStreamRequestImpl exists for each stream which is in progress of being
46 // created for the StreamFactory. 45 // created for the StreamFactory.
47 class HttpStreamFactoryImpl::Job { 46 class HttpStreamFactoryImpl::Job {
48 public: 47 public:
49 // Delegate to report Job's status to Request and HttpStreamFactory. 48 // Delegate to report Job's status to Request and HttpStreamFactory.
50 class NET_EXPORT_PRIVATE Delegate { 49 class NET_EXPORT_PRIVATE Delegate {
51 public: 50 public:
52 virtual ~Delegate() {} 51 virtual ~Delegate() {}
53 52
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 const SSLConfig& server_ssl_config, 521 const SSLConfig& server_ssl_config,
523 const SSLConfig& proxy_ssl_config, 522 const SSLConfig& proxy_ssl_config,
524 HostPortPair destination, 523 HostPortPair destination,
525 GURL origin_url, 524 GURL origin_url,
526 NetLog* net_log) = 0; 525 NetLog* net_log) = 0;
527 }; 526 };
528 527
529 } // namespace net 528 } // namespace net
530 529
531 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_ 530 #endif // NET_HTTP_HTTP_STREAM_FACTORY_IMPL_JOB_H_
OLDNEW
« no previous file with comments | « net/http/http_stream_factory.h ('k') | net/http/http_stream_factory_impl_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698