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

Side by Side Diff: net/spdy/spdy_session_pool.h

Issue 2366893002: net: address review comments for NetLogWithSource renaming (Closed)
Patch Set: Created 4 years, 3 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/spdy/spdy_session.h ('k') | net/spdy/spdy_test_util_common.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 11 matching lines...) Expand all
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; 31 class AddressList;
32 class NetLogWithSource;
33 class ClientSocketHandle; 32 class ClientSocketHandle;
34 class HostResolver; 33 class HostResolver;
35 class HttpServerProperties; 34 class HttpServerProperties;
35 class NetLogWithSource;
36 class ProxyDelegate; 36 class ProxyDelegate;
37 class SpdySession; 37 class SpdySession;
38 class TransportSecurityState; 38 class TransportSecurityState;
39 39
40 // This is a very simple pool for open SpdySessions. 40 // This is a very simple pool for open SpdySessions.
41 class NET_EXPORT SpdySessionPool 41 class NET_EXPORT SpdySessionPool
42 : public NetworkChangeNotifier::IPAddressObserver, 42 : public NetworkChangeNotifier::IPAddressObserver,
43 public SSLConfigService::Observer, 43 public SSLConfigService::Observer,
44 public CertDatabase::Observer { 44 public CertDatabase::Observer {
45 public: 45 public:
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 // resources from origins that are different from those of their associated 229 // resources from origins that are different from those of their associated
230 // streams. May be nullptr. 230 // streams. May be nullptr.
231 ProxyDelegate* proxy_delegate_; 231 ProxyDelegate* proxy_delegate_;
232 232
233 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool); 233 DISALLOW_COPY_AND_ASSIGN(SpdySessionPool);
234 }; 234 };
235 235
236 } // namespace net 236 } // namespace net
237 237
238 #endif // NET_SPDY_SPDY_SESSION_POOL_H_ 238 #endif // NET_SPDY_SPDY_SESSION_POOL_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_session.h ('k') | net/spdy/spdy_test_util_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698