diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 07:06:54 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 07:06:54 +0000 |
commit | c088b20a17974f0f622cbda62047cbc85b4fced4 (patch) | |
tree | 863a7555a54a585718a2f473f8222e4f31de44fe /net/spdy | |
parent | dc118492dc8949d4d5f8d9b099d3b12b05ccd62e (diff) | |
download | chromium_src-c088b20a17974f0f622cbda62047cbc85b4fced4.zip chromium_src-c088b20a17974f0f622cbda62047cbc85b4fced4.tar.gz chromium_src-c088b20a17974f0f622cbda62047cbc85b4fced4.tar.bz2 |
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
Diffstat (limited to 'net/spdy')
-rw-r--r-- | net/spdy/spdy_protocol.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/spdy/spdy_protocol.h b/net/spdy/spdy_protocol.h index 424a7d7..dd6f4d7 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; } |