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

Unified Diff: net/spdy/hpack_decoder.cc

Issue 290003006: Land recent SPDY changes (through 67282679) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on nullptr => NULL Created 6 years, 7 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
« no previous file with comments | « no previous file | net/spdy/hpack_decoder_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack_decoder.cc
diff --git a/net/spdy/hpack_decoder.cc b/net/spdy/hpack_decoder.cc
index 3f68938668bb6988339a798c47108f93c3950d47..abd579ad007049be6730eccd728e881109da6fa2 100644
--- a/net/spdy/hpack_decoder.cc
+++ b/net/spdy/hpack_decoder.cc
@@ -60,7 +60,7 @@ bool HpackDecoder::HandleControlFrameHeadersComplete(SpdyStreamId id) {
// Also clear entry state for the next decoded headers block.
// TODO(jgraettinger): We may need to revisit the order in which headers
// are emitted (b/14051713).
- for (HpackEntry::OrderedSet::const_iterator it =
+ for (HpackHeaderTable::OrderedEntrySet::const_iterator it =
header_table_.reference_set().begin();
it != header_table_.reference_set().end(); ++it) {
HpackEntry* entry = *it;
« no previous file with comments | « no previous file | net/spdy/hpack_decoder_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698