Index: net/spdy/spdy_test_util_spdy2.h |
diff --git a/net/spdy/spdy_test_util_spdy2.h b/net/spdy/spdy_test_util_spdy2.h |
index 7be9ec112f2ef2caf1dcd2d7d6d212e377f3cb40..1a9be941e64f9e6672dbbca08c8aa4c24fe19ac8 100644 |
--- a/net/spdy/spdy_test_util_spdy2.h |
+++ b/net/spdy/spdy_test_util_spdy2.h |
@@ -19,6 +19,7 @@ |
#include "net/http/http_transaction_factory.h" |
#include "net/proxy/proxy_service.h" |
#include "net/socket/socket_test_util.h" |
+#include "net/spdy/spdy_session.h" |
#include "net/url_request/url_request_context.h" |
#include "net/url_request/url_request_context_storage.h" |
@@ -364,6 +365,10 @@ struct SpdySessionDependencies { |
scoped_ptr<DeterministicMockClientSocketFactory> deterministic_socket_factory; |
scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory; |
HttpServerPropertiesImpl http_server_properties; |
+ bool enable_ip_pooling; |
+ bool enable_compression; |
+ bool enable_ping; |
+ SpdySession::TimeFunc time_func; |
std::string trusted_spdy_proxy; |
NetLog* net_log; |
}; |
@@ -413,16 +418,6 @@ class SpdySessionPoolPeer { |
DISALLOW_COPY_AND_ASSIGN(SpdySessionPoolPeer); |
}; |
-// Helper to manage the state of a number of SPDY global variables. |
-class SpdyTestStateHelper { |
- public: |
- SpdyTestStateHelper(); |
- ~SpdyTestStateHelper(); |
- |
- private: |
- DISALLOW_COPY_AND_ASSIGN(SpdyTestStateHelper); |
-}; |
- |
} // namespace test_spdy2 |
} // namespace net |