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

Unified Diff: third_party/WebKit/public/platform/WebURLResponse.h

Issue 2429063002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming.
Patch Set: 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: third_party/WebKit/public/platform/WebURLResponse.h
diff --git a/third_party/WebKit/public/platform/WebURLResponse.h b/third_party/WebKit/public/platform/WebURLResponse.h
index d0be07f4eee5729d54b5bfef6feddcf5f1bbad19..7554123cda21bec321c1a72f25f61638a88a2ebb 100644
--- a/third_party/WebKit/public/platform/WebURLResponse.h
+++ b/third_party/WebKit/public/platform/WebURLResponse.h
@@ -281,6 +281,10 @@ class WebURLResponse {
BLINK_PLATFORM_EXPORT WebString remoteIPAddress() const;
BLINK_PLATFORM_EXPORT void setRemoteIPAddress(const WebString&);
+ // ALPN negotiated protocol of the socket which fetched this resource.
+ BLINK_PLATFORM_EXPORT WebString alpnNegotiatedProtocol() const;
+ BLINK_PLATFORM_EXPORT void setALPNNegotiatedProtocol(const WebString&);
+
// Remote port number of the socket which fetched this resource.
BLINK_PLATFORM_EXPORT unsigned short remotePort() const;
BLINK_PLATFORM_EXPORT void setRemotePort(unsigned short);

Powered by Google App Engine
This is Rietveld 408576698