Index: net/spdy/spdy_session.cc |
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc |
index d316ea2cc457686d57c240b99bb31c2fcfb8ab60..ca8b4a9a0f25842da35106dbb308b78704f1c078 100644 |
--- a/net/spdy/spdy_session.cc |
+++ b/net/spdy/spdy_session.cc |
@@ -669,20 +669,19 @@ bool SpdySession::CanPool(TransportSecurityState* transport_security_state, |
return true; |
} |
-SpdySession::SpdySession( |
- const SpdySessionKey& spdy_session_key, |
- const base::WeakPtr<HttpServerProperties>& http_server_properties, |
- TransportSecurityState* transport_security_state, |
- bool verify_domain_authentication, |
- bool enable_sending_initial_data, |
- bool enable_ping_based_connection_checking, |
- bool enable_priority_dependencies, |
- NextProto default_protocol, |
- size_t session_max_recv_window_size, |
- size_t stream_max_recv_window_size, |
- TimeFunc time_func, |
- ProxyDelegate* proxy_delegate, |
- NetLog* net_log) |
+SpdySession::SpdySession(const SpdySessionKey& spdy_session_key, |
+ HttpServerProperties* const http_server_properties, |
asanka
2016/06/07 20:19:56
Same comment as elsewhere. Marking the parameter c
Bence
2016/06/08 18:27:18
Done.
|
+ TransportSecurityState* transport_security_state, |
+ bool verify_domain_authentication, |
+ bool enable_sending_initial_data, |
+ bool enable_ping_based_connection_checking, |
+ bool enable_priority_dependencies, |
+ NextProto default_protocol, |
+ size_t session_max_recv_window_size, |
+ size_t stream_max_recv_window_size, |
+ TimeFunc time_func, |
+ ProxyDelegate* proxy_delegate, |
+ NetLog* net_log) |
: in_io_loop_(false), |
spdy_session_key_(spdy_session_key), |
pool_(NULL), |