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

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

Issue 312193005: Pass chrome version and channel in CHLO message to server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use kUACV as the Tag and changed client_description to client_version Created 6 years, 6 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/quic/crypto/crypto_handshake_message.cc
diff --git a/net/quic/crypto/crypto_handshake_message.cc b/net/quic/crypto/crypto_handshake_message.cc
index 4f593e8d3895e6cb429d76b3d28ac727c7dbd742..63419da950fa50e65c029e921469661a92d08618 100644
--- a/net/quic/crypto/crypto_handshake_message.cc
+++ b/net/quic/crypto/crypto_handshake_message.cc
@@ -301,6 +301,10 @@ string CryptoHandshakeMessage::DebugStringInternal(size_t indent) const {
static_cast<int>(it->second.size()));
done = true;
break;
+ case kUACV:
+ ret += it->second;
+ done = true;
+ break;
}
if (!done) {

Powered by Google App Engine
This is Rietveld 408576698