Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(902)

Unified Diff: net/spdy/spdy_session.cc

Issue 2041863002: Remove HttpServerProperies::GetWeakPtr(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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),

Powered by Google App Engine
This is Rietveld 408576698