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

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: Rebase. 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
« no previous file with comments | « net/spdy/spdy_session.h ('k') | net/spdy/spdy_session_pool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.cc
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
index 0c97fa5daffdcc46a98037e92cc156b54847b097..5b4530cce100ad0d016bf2ac8b45a483f4004045 100644
--- a/net/spdy/spdy_session.cc
+++ b/net/spdy/spdy_session.cc
@@ -670,20 +670,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* 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)
: in_io_loop_(false),
spdy_session_key_(spdy_session_key),
pool_(NULL),
« no previous file with comments | « net/spdy/spdy_session.h ('k') | net/spdy/spdy_session_pool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698