| Index: net/spdy/spdy_session.h
|
| diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h
|
| index 513464d842fff72f7cc45f5bcaff3e85516527e2..3b9d6919762d97288f6e2324ce3f73fd3d27835d 100644
|
| --- a/net/spdy/spdy_session.h
|
| +++ b/net/spdy/spdy_session.h
|
| @@ -254,7 +254,9 @@ class NET_EXPORT SpdySession : public base::RefCounted<SpdySession>,
|
| priority(priority),
|
| spdy_stream(spdy_stream),
|
| stream_net_log(&stream_net_log),
|
| - callback(callback) { }
|
| + callback(callback) {}
|
| +
|
| + ~PendingCreateStream();
|
|
|
| const GURL* url;
|
| RequestPriority priority;
|
| @@ -273,6 +275,7 @@ class NET_EXPORT SpdySession : public base::RefCounted<SpdySession>,
|
| CallbackResultPair() : result(OK) {}
|
| CallbackResultPair(const CompletionCallback& callback_in, int result_in)
|
| : callback(callback_in), result(result_in) {}
|
| + ~CallbackResultPair();
|
|
|
| CompletionCallback callback;
|
| int result;
|
|
|