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 792b19c8dbd6eef2f9bb7bd48e56ef7439475f89..7be9ec112f2ef2caf1dcd2d7d6d212e377f3cb40 100644 |
--- a/net/spdy/spdy_test_util_spdy2.h |
+++ b/net/spdy/spdy_test_util_spdy2.h |
@@ -339,8 +339,7 @@ int CombineFrames(const SpdyFrame** frames, int num_frames, |
// Helper to manage the lifetimes of the dependencies for a |
// HttpNetworkTransaction. |
-class SpdySessionDependencies { |
- public: |
+struct SpdySessionDependencies { |
// Default set of dependencies -- "null" proxy service. |
SpdySessionDependencies(); |
@@ -353,6 +352,8 @@ class SpdySessionDependencies { |
SpdySessionDependencies* session_deps); |
static HttpNetworkSession* SpdyCreateSessionDeterministic( |
SpdySessionDependencies* session_deps); |
+ static HttpNetworkSession::Params CreateSessionParams( |
+ SpdySessionDependencies* session_deps); |
// NOTE: host_resolver must be ordered before http_auth_handler_factory. |
scoped_ptr<MockHostResolverBase> host_resolver; |
@@ -364,6 +365,7 @@ class SpdySessionDependencies { |
scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory; |
HttpServerPropertiesImpl http_server_properties; |
std::string trusted_spdy_proxy; |
+ NetLog* net_log; |
}; |
class SpdyURLRequestContext : public URLRequestContext { |