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

Unified Diff: net/quic/crypto/crypto_framer.cc

Issue 11633030: Send the ClientHello handshake message. Fix a bug in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix QuicStreamFactoryTest properly Created 8 years 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/quic/crypto/crypto_framer_test.cc » ('j') | net/quic/crypto/crypto_framer_test.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/crypto/crypto_framer.cc
===================================================================
--- net/quic/crypto/crypto_framer.cc (revision 174485)
+++ net/quic/crypto/crypto_framer.cc (working copy)
@@ -104,7 +104,7 @@
for (int i = 0; i < num_entries_; ++i) {
StringPiece value;
reader.ReadStringPiece(&value, tag_length_map_[tags_[i]]);
- tag_value_map_[tags_[i]] = value;
+ tag_value_map_[tags_[i]] = value.as_string();
}
CryptoHandshakeMessage message;
message.tag = message_tag_;
« no previous file with comments | « no previous file | net/quic/crypto/crypto_framer_test.cc » ('j') | net/quic/crypto/crypto_framer_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698