Index: net/spdy/spdy_session.cc |
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc |
index fc549d5af311a4adc4bdfbc04152b4c81558a782..dfafe1b309ed78249a45d12ff95f541b7c56465f 100644 |
--- a/net/spdy/spdy_session.cc |
+++ b/net/spdy/spdy_session.cc |
@@ -643,6 +643,7 @@ SpdySession::SpdySession(const SpdySessionKey& spdy_session_key, |
size_t session_max_recv_window_size, |
size_t stream_max_recv_window_size, |
TimeFunc time_func, |
+ ServerPushDelegate* push_delegate, |
ProxyDelegate* proxy_delegate, |
NetLog* net_log) |
: in_io_loop_(false), |
@@ -654,7 +655,7 @@ SpdySession::SpdySession(const SpdySessionKey& spdy_session_key, |
stream_hi_water_mark_(kFirstStreamId), |
last_accepted_push_stream_id_(0), |
unclaimed_pushed_streams_(this), |
- push_delegate_(nullptr), |
+ push_delegate_(push_delegate), |
num_pushed_streams_(0u), |
num_active_pushed_streams_(0u), |
bytes_pushed_count_(0u), |