| Index: net/spdy/spdy_session_pool.h
|
| diff --git a/net/spdy/spdy_session_pool.h b/net/spdy/spdy_session_pool.h
|
| index 0467583eefa0f8ea73936c0adbadc51d79ad58b9..b1a3a938e73b49725663b4bd68caad5e3b4111da 100644
|
| --- a/net/spdy/spdy_session_pool.h
|
| +++ b/net/spdy/spdy_session_pool.h
|
| @@ -42,7 +42,7 @@ class SpdySessionPoolPeer;
|
|
|
| // This is a very simple pool for open SpdySessions.
|
| class NET_EXPORT SpdySessionPool
|
| - : public NetworkChangeNotifier::IPAddressObserver,
|
| + : public NetworkChangeNotifier::NetworkChangeObserver,
|
| public SSLConfigService::Observer,
|
| public CertDatabase::Observer {
|
| public:
|
| @@ -127,7 +127,8 @@ class NET_EXPORT SpdySessionPool
|
| // We flush all idle sessions and release references to the active ones so
|
| // they won't get re-used. The active ones will either complete successfully
|
| // or error out due to the IP address change.
|
| - virtual void OnIPAddressChanged() OVERRIDE;
|
| + virtual void OnNetworkChanged(
|
| + net::NetworkChangeNotifier::ConnectionType type) OVERRIDE;
|
|
|
| // SSLConfigService::Observer methods:
|
|
|
|
|