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

Unified Diff: chrome/renderer/loadtimes_extension_bindings.cc

Issue 2429063002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming.
Patch Set: Added core_export for PerformanceResourceTiming Created 4 years, 2 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: chrome/renderer/loadtimes_extension_bindings.cc
diff --git a/chrome/renderer/loadtimes_extension_bindings.cc b/chrome/renderer/loadtimes_extension_bindings.cc
index 12f64be342135e37d437dddb0caa2f1d6b43ec0d..a75dbadc10dda7a881db77e82cce231da0865a5b 100644
--- a/chrome/renderer/loadtimes_extension_bindings.cc
+++ b/chrome/renderer/loadtimes_extension_bindings.cc
@@ -173,8 +173,7 @@ class LoadTimesExtensionWrapper : public v8::Extension {
document_state->alpn_negotiated_protocol();
bool was_alternate_protocol_available =
document_state->was_alternate_protocol_available();
- std::string connection_info = net::HttpResponseInfo::ConnectionInfoToString(
- document_state->connection_info());
+ std::string connection_info = document_state->connection_info();
// Important: |frame|, |data_source| and |document_state| should not be
// referred to below this line, as JS setters below can invalidate these

Powered by Google App Engine
This is Rietveld 408576698