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

Unified Diff: net/http/http_network_session.cc

Issue 2516033003: Landing Recent QUIC changes until Mon Nov 14 04:43:50 2016 +0000 (Closed)
Patch Set: Remove unused UpdatePacketGapSentHistogram() function. Created 4 years, 1 month 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 | « net/base/iovec.h ('k') | net/log/net_log_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_session.cc
diff --git a/net/http/http_network_session.cc b/net/http/http_network_session.cc
index efef0289957cdf8e6fcabd107e5a43822a7f3a27..2936e12e5048e5b176db85fc7768bf0e4b7b697c 100644
--- a/net/http/http_network_session.cc
+++ b/net/http/http_network_session.cc
@@ -27,6 +27,7 @@
#include "net/quic/core/quic_clock.h"
#include "net/quic/core/quic_crypto_client_stream_factory.h"
#include "net/quic/core/quic_protocol.h"
+#include "net/quic/core/quic_tag.h"
#include "net/quic/core/quic_utils.h"
#include "net/socket/client_socket_factory.h"
#include "net/socket/client_socket_pool_manager_impl.h"
@@ -296,7 +297,7 @@ std::unique_ptr<base::Value> HttpNetworkSession::QuicInfoToValue() const {
for (QuicTagVector::const_iterator it =
params_.quic_connection_options.begin();
it != params_.quic_connection_options.end(); ++it) {
- connection_options->AppendString("'" + QuicUtils::TagToString(*it) + "'");
+ connection_options->AppendString("'" + QuicTagToString(*it) + "'");
}
dict->Set("connection_options", std::move(connection_options));
« no previous file with comments | « net/base/iovec.h ('k') | net/log/net_log_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698