summaryrefslogtreecommitdiffstats
path: root/net/spdy/spdy_io_buffer.cc
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-28 03:27:03 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-28 03:27:03 +0000
commitc1dd24fcb3aa8c2c29a29841ca434998098941b3 (patch)
tree629d7d5180757f81189c110aa2e1550487894a6d /net/spdy/spdy_io_buffer.cc
parent7e8a3ffaed19ac3c6c187464abc22558bf78a556 (diff)
downloadchromium_src-c1dd24fcb3aa8c2c29a29841ca434998098941b3.zip
chromium_src-c1dd24fcb3aa8c2c29a29841ca434998098941b3.tar.gz
chromium_src-c1dd24fcb3aa8c2c29a29841ca434998098941b3.tar.bz2
Revert 144649 - Instead of enqueueing SPDY frames, instead enqueue SPDY streams that are ready to produce data. This allows us to lazily allocate a stream id.
BUG=111708 Review URL: https://chromiumcodereview.appspot.com/10448083 TBR=rch@chromium.org Review URL: https://chromiumcodereview.appspot.com/10710008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_io_buffer.cc')
-rw-r--r--net/spdy/spdy_io_buffer.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/net/spdy/spdy_io_buffer.cc b/net/spdy/spdy_io_buffer.cc
index f0c14b1..5720f7d 100644
--- a/net/spdy/spdy_io_buffer.cc
+++ b/net/spdy/spdy_io_buffer.cc
@@ -20,23 +20,8 @@ SpdyIOBuffer::SpdyIOBuffer(
SpdyIOBuffer::SpdyIOBuffer() : priority_(HIGHEST), position_(0), stream_(NULL) {
}
-SpdyIOBuffer::SpdyIOBuffer(const SpdyIOBuffer& rhs) {
- buffer_ = rhs.buffer_;
- priority_ = rhs.priority_;
- position_ = rhs.position_;
- stream_ = rhs.stream_;
-}
-
SpdyIOBuffer::~SpdyIOBuffer() {}
-SpdyIOBuffer& SpdyIOBuffer::operator=(const SpdyIOBuffer& rhs) {
- buffer_ = rhs.buffer_;
- priority_ = rhs.priority_;
- position_ = rhs.position_;
- stream_ = rhs.stream_;
- return *this;
-}
-
void SpdyIOBuffer::release() {
buffer_ = NULL;
stream_ = NULL;