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

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

Issue 2429063002: Implement nextHopProtocol in PerformanceResourceTiming and PerformanceNavigationTiming.
Patch Set: connection_info initial value 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..1f225b08ce37945516dcff4f6b8fc6e99ed0f9c6 100644
--- a/third_party/WebKit/public/platform/WebURLResponse.h
+++ b/third_party/WebKit/public/platform/WebURLResponse.h
@@ -281,6 +281,14 @@ 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&);
+
+ // ALPN negotiated protocol of the socket which fetched this resource.
panicker 2016/10/24 18:23:31 incorrect description, please fix
sunjian 2016/10/25 00:10:55 Done.
+ BLINK_PLATFORM_EXPORT WebString connectionInfo() const;
+ BLINK_PLATFORM_EXPORT void setConnectionInfo(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