| Index: net/spdy/spdy_session_pool.cc
|
| diff --git a/net/spdy/spdy_session_pool.cc b/net/spdy/spdy_session_pool.cc
|
| index ea35c455c7b998bd1eb291d5c579750ee6717c06..6530f3650871fbfd8e69d416e67675d497a50b0b 100644
|
| --- a/net/spdy/spdy_session_pool.cc
|
| +++ b/net/spdy/spdy_session_pool.cc
|
| @@ -358,15 +358,7 @@ void SpdySessionPool::OnSSLConfigChanged() {
|
| CloseCurrentSessions(ERR_NETWORK_CHANGED);
|
| }
|
|
|
| -void SpdySessionPool::OnCertAdded(const X509Certificate* cert) {
|
| - CloseCurrentSessions(ERR_CERT_DATABASE_CHANGED);
|
| -}
|
| -
|
| -void SpdySessionPool::OnCACertChanged(const X509Certificate* cert) {
|
| - // Per wtc, we actually only need to CloseCurrentSessions when trust is
|
| - // reduced. CloseCurrentSessions now because OnCACertChanged does not
|
| - // tell us this.
|
| - // See comments in ClientSocketPoolManager::OnCACertChanged.
|
| +void SpdySessionPool::OnCertDBChanged(const X509Certificate* cert) {
|
| CloseCurrentSessions(ERR_CERT_DATABASE_CHANGED);
|
| }
|
|
|
|
|