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

Side by Side Diff: net/spdy/spdy_session_pool.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/spdy/spdy_proxy_client_socket.h ('k') | net/spdy/spdy_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 #ifndef NET_SPDY_SPDY_SESSION_POOL_H_ 5 #ifndef NET_SPDY_SPDY_SESSION_POOL_H_
6 #define NET_SPDY_SPDY_SESSION_POOL_H_ 6 #define NET_SPDY_SPDY_SESSION_POOL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 10 matching lines...) Expand all
21 #include "net/base/net_export.h" 21 #include "net/base/net_export.h"
22 #include "net/base/network_change_notifier.h" 22 #include "net/base/network_change_notifier.h"
23 #include "net/cert/cert_database.h" 23 #include "net/cert/cert_database.h"
24 #include "net/proxy/proxy_config.h" 24 #include "net/proxy/proxy_config.h"
25 #include "net/proxy/proxy_server.h" 25 #include "net/proxy/proxy_server.h"
26 #include "net/spdy/spdy_session_key.h" 26 #include "net/spdy/spdy_session_key.h"
27 #include "net/ssl/ssl_config_service.h" 27 #include "net/ssl/ssl_config_service.h"
28 28
29 namespace net { 29 namespace net {
30 30
31 class AddressList;
32 class ClientSocketHandle; 31 class ClientSocketHandle;
33 class HostResolver; 32 class HostResolver;
34 class HttpServerProperties; 33 class HttpServerProperties;
35 class NetLogWithSource; 34 class NetLogWithSource;
36 class ProxyDelegate; 35 class ProxyDelegate;
37 class SpdySession; 36 class SpdySession;
38 class TransportSecurityState; 37 class TransportSecurityState;
39 38
40 // This is a very simple pool for open SpdySessions. 39 // This is a very simple pool for open SpdySessions.
41 class NET_EXPORT SpdySessionPool 40 class NET_EXPORT SpdySessionPool
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 // resources from origins that are different from those of their associated 222 // resources from origins that are different from those of their associated
224 // streams. May be nullptr. 223 // streams. May be nullptr.
225 ProxyDelegate* proxy_delegate_; 224 ProxyDelegate* proxy_delegate_;
226 225
227 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); 226 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool);
228 }; 227 };
229 228
230 } // namespace net 229 } // namespace net
231 230
232 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ 231 #endif // NET_SPDY_SPDY_SESSION_POOL_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_proxy_client_socket.h ('k') | net/spdy/spdy_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698