| 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 e51c68658443f8aa1f5f1e7d408851add3efb6d7..61cf41eee5043ee0d63e3e129d5dfb9922dd8121 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebURLResponse.cpp
|
| @@ -372,6 +372,24 @@ void WebURLResponse::AppendRedirectResponse(const WebURLResponse& response) {
|
| resource_response_->AppendRedirectResponse(response.ToResourceResponse());
|
| }
|
|
|
| +WebString WebURLResponse::AlpnNegotiatedProtocol() const {
|
| + return resource_response_->AlpnNegotiatedProtocol();
|
| +}
|
| +
|
| +void WebURLResponse::SetAlpnNegotiatedProtocol(
|
| + const WebString& alpn_negotiated_protocol) {
|
| + resource_response_->SetAlpnNegotiatedProtocol(alpn_negotiated_protocol);
|
| +}
|
| +
|
| +net::HttpResponseInfo::ConnectionInfo WebURLResponse::ConnectionInfo() const {
|
| + return resource_response_->ConnectionInfo();
|
| +}
|
| +
|
| +void WebURLResponse::SetConnectionInfo(
|
| + net::HttpResponseInfo::ConnectionInfo connection_info) {
|
| + resource_response_->SetConnectionInfo(connection_info);
|
| +}
|
| +
|
| WebURLResponse::WebURLResponse(ResourceResponse& r) : resource_response_(&r) {}
|
|
|
| } // namespace blink
|
|
|