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

Unified Diff: net/spdy/spdy_protocol.h

Issue 354483005: SPDY cleanup: use ParseFrameType and SerializeFrameType (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compile fix. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/spdy/spdy_protocol.h
diff --git a/net/spdy/spdy_protocol.h b/net/spdy/spdy_protocol.h
index 9d28b97224e20528fcf883cfaf4349c723bc77d8..0310d37b1f9860fb4e9c83a66fb1bb53edaacfdc 100644
--- a/net/spdy/spdy_protocol.h
+++ b/net/spdy/spdy_protocol.h
@@ -272,24 +272,21 @@ const int kHttp2ConnectionHeaderPrefixSize =
// Types of SPDY frames.
enum SpdyFrameType {
- DATA = 0,
- SYN_STREAM = 1,
- FIRST_CONTROL_TYPE = SYN_STREAM,
+ DATA,
+ SYN_STREAM,
SYN_REPLY,
RST_STREAM,
SETTINGS,
- NOOP, // Because it is valid in SPDY/2, kept for identifiability/enum order.
PING,
GOAWAY,
HEADERS,
WINDOW_UPDATE,
- CREDENTIAL, // No longer valid. Kept for identifiability/enum order.
+ CREDENTIAL = 10, // No longer valid. Kept for identifiability.
BLOCKED,
PUSH_PROMISE,
CONTINUATION,
ALTSVC,
- PRIORITY,
- LAST_CONTROL_TYPE = PRIORITY
+ PRIORITY
};
// Flags on data packets.
@@ -440,6 +437,10 @@ class NET_EXPORT_PRIVATE SpdyConstants {
static int SerializeFrameType(SpdyMajorVersion version,
SpdyFrameType frame_type);
+ // Returns the frame type for non-control (i.e. data) frames
+ // in the given SPDY version.
+ static int DataFrameType(SpdyMajorVersion version);
+
// Returns true if a given on-the-wire enumeration of a setting id is valid
// for a given protocol version, false otherwise.
static bool IsValidSettingId(SpdyMajorVersion version, int setting_id_field);

Powered by Google App Engine
This is Rietveld 408576698