Index: net/http/http_stream_factory.h |
diff --git a/net/http/http_stream_factory.h b/net/http/http_stream_factory.h |
index b3afa2ac17f186c05acee4c8c9c9049f89306d42..fe818226212c8c7db8755297e628e3e6ea0f662f 100644 |
--- a/net/http/http_stream_factory.h |
+++ b/net/http/http_stream_factory.h |
@@ -243,25 +243,10 @@ class NET_EXPORT HttpStreamFactory { |
virtual const HostMappingRules* GetHostMappingRules() const = 0; |
- // Static settings |
- |
- // Reset all static settings to initialized values. Used to init test suite. |
- static void ResetStaticSettingsToInit(); |
- |
- // Turns spdy on or off. |
- // TODO(mmenke): Figure out if this can be made a property of the |
- // HttpNetworkSession. |
- static void set_spdy_enabled(bool value) { |
- spdy_enabled_ = value; |
- } |
- static bool spdy_enabled() { return spdy_enabled_; } |
- |
protected: |
HttpStreamFactory(); |
private: |
- static bool spdy_enabled_; |
- |
url::SchemeHostPort RewriteHost(const url::SchemeHostPort& server); |
DISALLOW_COPY_AND_ASSIGN(HttpStreamFactory); |