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

Unified Diff: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp

Issue 2429063002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming.
Patch Set: fallback to hq when quic is contained Created 3 years, 9 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: third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
index 5d644c434410ea1987be8c29ebc11fa7a537df63..72dfa3560591c14d049cdf95452b4a4d01bb1f0c 100644
--- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
@@ -373,6 +373,23 @@ void WebURLResponse::setExtraData(WebURLResponse::ExtraData* extraData) {
m_resourceResponse->setExtraData(ExtraDataContainer::create(extraData));
}
+WebString WebURLResponse::alpnNegotiatedProtocol() const {
+ return m_resourceResponse->alpnNegotiatedProtocol();
+}
+
+void WebURLResponse::setALPNNegotiatedProtocol(
+ const WebString& alpnNegotiatedProtocol) {
+ m_resourceResponse->setALPNNegotiatedProtocol(alpnNegotiatedProtocol);
+}
+
+WebString WebURLResponse::connectionInfo() const {
+ return m_resourceResponse->connectionInfo();
+}
+
+void WebURLResponse::setConnectionInfo(const WebString& connectionInfo) {
+ m_resourceResponse->setConnectionInfo(connectionInfo);
+}
+
void WebURLResponse::appendRedirectResponse(const WebURLResponse& response) {
m_resourceResponse->appendRedirectResponse(response.toResourceResponse());
}

Powered by Google App Engine
This is Rietveld 408576698