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

Unified Diff: content/child/weburlresponse_extradata_impl.cc

Issue 2429063002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming.
Patch Set: included changes for navigation timing Created 3 years, 8 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: content/child/weburlresponse_extradata_impl.cc
diff --git a/content/child/weburlresponse_extradata_impl.cc b/content/child/weburlresponse_extradata_impl.cc
index 485a5b5360f78f3aefcbd434adfde078329e0741..ebd4d03616345e010e3032cef9b31bd4d645a84a 100644
--- a/content/child/weburlresponse_extradata_impl.cc
+++ b/content/child/weburlresponse_extradata_impl.cc
@@ -6,11 +6,8 @@
namespace content {
-WebURLResponseExtraDataImpl::WebURLResponseExtraDataImpl(
- const std::string& alpn_negotiated_protocol)
- : alpn_negotiated_protocol_(alpn_negotiated_protocol),
- is_ftp_directory_listing_(false),
- connection_info_(net::HttpResponseInfo::CONNECTION_INFO_UNKNOWN),
+WebURLResponseExtraDataImpl::WebURLResponseExtraDataImpl()
+ : is_ftp_directory_listing_(false),
effective_connection_type_(net::EFFECTIVE_CONNECTION_TYPE_UNKNOWN) {}
WebURLResponseExtraDataImpl::~WebURLResponseExtraDataImpl() {

Powered by Google App Engine
This is Rietveld 408576698