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

Unified Diff: net/spdy/spdy_framer.h

Issue 9802003: SPDY - persist SPDY settings. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 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_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 {

Powered by Google App Engine
This is Rietveld 408576698