From 635345132365492acb8c601be50f6877316886c3 Mon Sep 17 00:00:00 2001 From: "rch@chromium.org" Date: Sun, 23 Dec 2012 18:49:00 +0000 Subject: Make all QUIC streams owned by the session. Add a Visitor interface to the stream, so that consumer can be informed when the stream will be deleted. Merge internal change: 40355686 TBR=jar@chromium.org Review URL: https://chromiumcodereview.appspot.com/11644084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174559 0039d316-1c4b-4281-b951-d872f2087c98 --- net/quic/quic_client_session.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'net/quic/quic_client_session.h') diff --git a/net/quic/quic_client_session.h b/net/quic/quic_client_session.h index ad52106..2cd4456 100644 --- a/net/quic/quic_client_session.h +++ b/net/quic/quic_client_session.h @@ -51,15 +51,12 @@ class NET_EXPORT_PRIVATE QuicClientSession : public QuicSession { QuicStreamId id) OVERRIDE; private: - typedef base::hash_map StreamMap; - // A completion callback invoked when a read completes. void OnReadComplete(int result); base::WeakPtrFactory weak_factory_; QuicCryptoClientStream crypto_stream_; scoped_ptr helper_; - StreamMap streams_; QuicStreamFactory* stream_factory_; scoped_refptr read_buffer_; bool read_pending_; -- cgit v1.1