Index: net/spdy/spdy_session.h |
diff --git a/net/spdy/spdy_session.h b/net/spdy/spdy_session.h |
index 6bdb5fcaf2420375d2bc4e0e7703c0dc0ac35ff0..1e3244e3fecf5d3b7fad349e6fdc6083b39e80ce 100644 |
--- a/net/spdy/spdy_session.h |
+++ b/net/spdy/spdy_session.h |
@@ -327,7 +327,7 @@ class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface, |
// of that stream is updated to match |priority|. |
int GetPushStream(const GURL& url, |
RequestPriority priority, |
- base::WeakPtr<SpdyStream>* spdy_stream, |
+ SpdyStream** spdy_stream, |
const NetLogWithSource& stream_net_log); |
// Called when the pushed stream should be cancelled. If the pushed stream is |
@@ -818,7 +818,7 @@ class NET_EXPORT SpdySession : public BufferedSpdyFramerVisitorInterface, |
// Check if we have a pending pushed-stream for this url |
// Returns the stream if found (and returns it from the pending |
// list). Returns NULL otherwise. |
- base::WeakPtr<SpdyStream> GetActivePushStream(const GURL& url); |
+ SpdyStream* GetActivePushStream(const GURL& url); |
void RecordPingRTTHistogram(base::TimeDelta duration); |
void RecordHistograms(); |