| Index: net/spdy/spdy_session.cc
|
| diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
|
| index 75497a5615400c5d3b6e047a72b10899efa94b7e..2b73fccd46ee82bbee9847a8cae77e3ec58a72cb 100644
|
| --- a/net/spdy/spdy_session.cc
|
| +++ b/net/spdy/spdy_session.cc
|
| @@ -324,8 +324,26 @@ SpdySession::SpdySession(const HostPortProxyPair& host_port_proxy_pair,
|
| // TODO(mbelshe): consider randomization of the stream_hi_water_mark.
|
| }
|
|
|
| +SpdySession::PendingCreateStream::PendingCreateStream(
|
| + const GURL& url, RequestPriority priority,
|
| + scoped_refptr<SpdyStream>* spdy_stream,
|
| + const BoundNetLog& stream_net_log,
|
| + const CompletionCallback& callback)
|
| + : url(&url),
|
| + priority(priority),
|
| + spdy_stream(spdy_stream),
|
| + stream_net_log(&stream_net_log),
|
| + callback(callback) {
|
| +}
|
| +
|
| SpdySession::PendingCreateStream::~PendingCreateStream() {}
|
|
|
| +SpdySession::CallbackResultPair::CallbackResultPair(
|
| + const CompletionCallback& callback_in, int result_in)
|
| + : callback(callback_in),
|
| + result(result_in) {
|
| +}
|
| +
|
| SpdySession::CallbackResultPair::~CallbackResultPair() {}
|
|
|
| SpdySession::~SpdySession() {
|
|
|