Skip to content

Commit

Permalink
Remove a couple of obsolete/done TODOs.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
akalin@chromium.org committed Jun 11, 2013
1 parent dc11849 commit c088b20
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions net/spdy/spdy_protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit c088b20

Please sign in to comment.