Chromium Code Reviews| Index: net/spdy/spdy_framer.h |
| =================================================================== |
| --- net/spdy/spdy_framer.h (revision 127896) |
| +++ net/spdy/spdy_framer.h (working copy) |
| @@ -76,6 +76,9 @@ |
| // A datastructure for holding a set of ID/value pairs for a SETTINGS frame. |
| typedef std::pair<SettingsFlagsAndId, uint32> SpdySetting; |
| typedef std::list<SpdySetting> SpdySettings; |
|
Ryan Hamilton
2012/03/21 16:24:41
Does this type still need to exist? If so, what i
ramant (doing other things)
2012/03/23 04:11:25
Would like to submit a separate CL to server/chrom
Ryan Hamilton
2012/03/23 15:25:38
*nod*
|
| +// SpdySettingsMap has unique (flags, value) pair for give SpdySetting ID. |
| +typedef std::pair<uint8, uint32> SettingsFlagsAndValue; |
| +typedef std::map<uint32, SettingsFlagsAndValue> SettingsMap; |
| // A datastrcture for holding the contents of a CREDENTIAL frame. |
| struct NET_EXPORT_PRIVATE SpdyCredential { |