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

Side by Side Diff: net/socket/client_socket_pool_manager_impl.h

Issue 2691683003: Remove OnCertDBChanged |cert| parameter. (Closed)
Patch Set: comment wording Created 3 years, 10 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/socket/client_socket_factory.cc ('k') | net/socket/client_socket_pool_manager_impl.cc » ('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_SOCKET_CLIENT_SOCKET_POOL_MANAGER_IMPL_H_ 5 #ifndef NET_SOCKET_CLIENT_SOCKET_POOL_MANAGER_IMPL_H_
6 #define NET_SOCKET_CLIENT_SOCKET_POOL_MANAGER_IMPL_H_ 6 #define NET_SOCKET_CLIENT_SOCKET_POOL_MANAGER_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 HttpProxyClientSocketPool* GetSocketPoolForHTTPProxy( 72 HttpProxyClientSocketPool* GetSocketPoolForHTTPProxy(
73 const HostPortPair& http_proxy) override; 73 const HostPortPair& http_proxy) override;
74 74
75 SSLClientSocketPool* GetSocketPoolForSSLWithProxy( 75 SSLClientSocketPool* GetSocketPoolForSSLWithProxy(
76 const HostPortPair& proxy_server) override; 76 const HostPortPair& proxy_server) override;
77 77
78 // Creates a Value summary of the state of the socket pools. 78 // Creates a Value summary of the state of the socket pools.
79 std::unique_ptr<base::Value> SocketPoolInfoToValue() const override; 79 std::unique_ptr<base::Value> SocketPoolInfoToValue() const override;
80 80
81 // CertDatabase::Observer methods: 81 // CertDatabase::Observer methods:
82 void OnCertDBChanged(const X509Certificate* cert) override; 82 void OnCertDBChanged() override;
83 83
84 void DumpMemoryStats( 84 void DumpMemoryStats(
85 base::trace_event::ProcessMemoryDump* pmd, 85 base::trace_event::ProcessMemoryDump* pmd,
86 const std::string& parent_dump_absolute_name) const override; 86 const std::string& parent_dump_absolute_name) const override;
87 87
88 private: 88 private:
89 using TransportSocketPoolMap = 89 using TransportSocketPoolMap =
90 std::map<HostPortPair, std::unique_ptr<TransportClientSocketPool>>; 90 std::map<HostPortPair, std::unique_ptr<TransportClientSocketPool>>;
91 using SOCKSSocketPoolMap = 91 using SOCKSSocketPoolMap =
92 std::map<HostPortPair, std::unique_ptr<SOCKSClientSocketPool>>; 92 std::map<HostPortPair, std::unique_ptr<SOCKSClientSocketPool>>;
(...skipping 26 matching lines...) Expand all
119 SSLSocketPoolMap ssl_socket_pools_for_https_proxies_; 119 SSLSocketPoolMap ssl_socket_pools_for_https_proxies_;
120 HTTPProxySocketPoolMap http_proxy_socket_pools_; 120 HTTPProxySocketPoolMap http_proxy_socket_pools_;
121 SSLSocketPoolMap ssl_socket_pools_for_proxies_; 121 SSLSocketPoolMap ssl_socket_pools_for_proxies_;
122 122
123 DISALLOW_COPY_AND_ASSIGN(ClientSocketPoolManagerImpl); 123 DISALLOW_COPY_AND_ASSIGN(ClientSocketPoolManagerImpl);
124 }; 124 };
125 125
126 } // namespace net 126 } // namespace net
127 127
128 #endif // NET_SOCKET_CLIENT_SOCKET_POOL_MANAGER_IMPL_H_ 128 #endif // NET_SOCKET_CLIENT_SOCKET_POOL_MANAGER_IMPL_H_
OLDNEW
« no previous file with comments | « net/socket/client_socket_factory.cc ('k') | net/socket/client_socket_pool_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698