From c088b20a17974f0f622cbda62047cbc85b4fced4 Mon Sep 17 00:00:00 2001 From: "akalin@chromium.org" Date: Tue, 11 Jun 2013 07:06:54 +0000 Subject: [PATCH] Remove a couple of obsolete/done TODOs. This lands server change 47541011. BUG= R=rch@chromium.org Review URL: https://codereview.chromium.org/16763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205445 0039d316-1c4b-4281-b951-d872f2087c98 --- net/spdy/spdy_protocol.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/net/spdy/spdy_protocol.h b/net/spdy/spdy_protocol.h index 424a7d70fc2b06..dd6f4d7f8148d9 100644 --- a/net/spdy/spdy_protocol.h +++ b/net/spdy/spdy_protocol.h @@ -255,11 +255,6 @@ const char kV3Dictionary[] = { }; const int kV3DictionarySize = arraysize(kV3Dictionary); -// Note: all protocol data structures are on-the-wire format. That means that -// data is stored in network-normalized order. Readers must use the -// accessors provided or call base::NetworkToHostX() functions. -// TODO(hkhalil): remove above note. - // Types of SPDY frames. enum SpdyFrameType { DATA = 0, @@ -381,7 +376,6 @@ class SpdyFrameWithStreamIdIR : public SpdyFrameIR { virtual ~SpdyFrameWithStreamIdIR() {} SpdyStreamId stream_id() const { return stream_id_; } void set_stream_id(SpdyStreamId stream_id) { - // TODO(hkhalil): DCHECK_LT(0u, stream_id); DCHECK_EQ(0u, stream_id & ~kStreamIdMask); stream_id_ = stream_id; }