Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Issue 354483005: SPDY cleanup: use ParseFrameType and SerializeFrameType (Closed)

Created:
6 years, 6 months ago by Johnny
Modified:
6 years, 5 months ago
Reviewers:
Ryan Hamilton
CC:
chromium-reviews, cbentzel+watch_chromium.org
Project:
chromium
Visibility:
Public.

Description

SPDY cleanup: use ParseFrameType and SerializeFrameType Instead of SpdyFrameType enum values. Also remove NOOP frames from the set of recognized frames. No functional change since NOOP frames are deprecated and not seen in the wild. This lands server change 68256336 by mlavan. BUG=

Patch Set 1 #

Patch Set 2 : Compile fix. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+51 lines, -53 lines) Patch
M net/spdy/spdy_framer.cc View 4 chunks +10 lines, -11 lines 2 comments Download
M net/spdy/spdy_framer_test.cc View 4 chunks +17 lines, -6 lines 0 comments Download
M net/spdy/spdy_protocol.h View 2 chunks +8 lines, -7 lines 0 comments Download
M net/spdy/spdy_protocol.cc View 1 2 chunks +14 lines, -5 lines 0 comments Download
M net/spdy/spdy_protocol_test.cc View 1 chunk +0 lines, -22 lines 0 comments Download
M net/spdy/spdy_test_util_common.cc View 1 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 3 (0 generated)
Johnny
6 years, 6 months ago (2014-06-25 17:05:04 UTC) #1
Ryan Hamilton
lgtm https://codereview.chromium.org/354483005/diff/20001/net/spdy/spdy_framer.cc File net/spdy/spdy_framer.cc (right): https://codereview.chromium.org/354483005/diff/20001/net/spdy/spdy_framer.cc#newcode721 net/spdy/spdy_framer.cc:721: control_frame_type_field != 0; This is a bit complicated. ...
6 years, 6 months ago (2014-06-25 22:31:33 UTC) #2
Johnny
6 years, 6 months ago (2014-06-26 15:57:24 UTC) #3
https://codereview.chromium.org/354483005/diff/20001/net/spdy/spdy_framer.cc
File net/spdy/spdy_framer.cc (right):

https://codereview.chromium.org/354483005/diff/20001/net/spdy/spdy_framer.cc#...
net/spdy/spdy_framer.cc:721: control_frame_type_field != 0;
On 2014/06/25 22:31:33, Ryan Hamilton wrote:
> This is a bit complicated. Consider adding
> SpdyConstants::IsControlFrame(frame_type)

Hmm. Think this needs a deeper re-factor. It's probably better done as:

is_control_frame = (DATA == SpdyConstants::ParseFrameType(protocol_version(),
control_frame_type_field));

or better:

control_frame_type_ = SpdyConstants::ParseFrameType(protocol_version(),
control_frame_type_field);
is_control_frame = (DATA == control_frame_type_);

But we haven't yet validated that the frame type is valid (thus the gymnastics
here, I think). I'll pass this along.

Powered by Google App Engine
This is Rietveld 408576698