| Index: net/spdy/spdy_session_pool.h
|
| diff --git a/net/spdy/spdy_session_pool.h b/net/spdy/spdy_session_pool.h
|
| index 9da713e456db833d35066c2bdb5ad49d13705977..f2d9cb563ce4f6dd7341061ed0a3e4f1b6a87ca1 100644
|
| --- a/net/spdy/spdy_session_pool.h
|
| +++ b/net/spdy/spdy_session_pool.h
|
| @@ -110,12 +110,12 @@ 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();
|
| + virtual void OnIPAddressChanged() OVERRIDE;
|
|
|
| // SSLConfigService::Observer methods:
|
|
|
| // We perform the same flushing as described above when SSL settings change.
|
| - virtual void OnSSLConfigChanged();
|
| + virtual void OnSSLConfigChanged() OVERRIDE;
|
|
|
| // A debugging mode where we compress all accesses through a single domain.
|
| static void ForceSingleDomain() { g_force_single_domain = true; }
|
| @@ -125,8 +125,8 @@ class NET_EXPORT SpdySessionPool
|
| static void enable_ip_pooling(bool value) { g_enable_ip_pooling = value; }
|
|
|
| // CertDatabase::Observer methods:
|
| - virtual void OnUserCertAdded(const X509Certificate* cert);
|
| - virtual void OnCertTrustChanged(const X509Certificate* cert);
|
| + virtual void OnUserCertAdded(const X509Certificate* cert) OVERRIDE;
|
| + virtual void OnCertTrustChanged(const X509Certificate* cert) OVERRIDE;
|
|
|
| private:
|
| friend class SpdySessionPoolPeer; // For testing.
|
|
|