diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 16:25:08 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-09 16:25:08 +0000 |
commit | 7d6b896aeb696ba04b9acfdc88708785df15289a (patch) | |
tree | 88eca4a04e6ed0dd2797a7b6f0c47ed734b65cd7 /net/spdy/spdy_protocol.h | |
parent | 0ac338051b72a1e3717bcf8a54270cfeb50f1d13 (diff) | |
download | chromium_src-7d6b896aeb696ba04b9acfdc88708785df15289a.zip chromium_src-7d6b896aeb696ba04b9acfdc88708785df15289a.tar.gz chromium_src-7d6b896aeb696ba04b9acfdc88708785df15289a.tar.bz2 |
Revert 44092 - Add support for the SPDY session frame.
per request from Mbelshe... reverting to fix tree.
BUG=34749
TEST=SpdyNetworkTransactionTest.SettingsSaved, SettingsPlayback
Review URL: http://codereview.chromium.org/1595013
TBR=mbelshe@chromium.org
Review URL: http://codereview.chromium.org/1621009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44093 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/spdy/spdy_protocol.h')
-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 435c55b..c8d5830 100644 --- a/net/spdy/spdy_protocol.h +++ b/net/spdy/spdy_protocol.h @@ -241,13 +241,7 @@ union SettingsFlagsAndId { SettingsFlagsAndId(uint32 val) : id_(val) {}; uint8 flags() const { return flags_[0]; } - void set_flags(uint8 flags) { flags_[0] = flags; } uint32 id() const { return (ntohl(id_) & kSettingsIdMask); }; - void set_id(uint32 id) { - DCHECK_EQ(0u, (id & ~kSettingsIdMask)); - id = htonl(id & kSettingsIdMask); - id_ = flags() | id; - } }; // A SETTINGS Control Frame structure. |