Index: net/http/http_network_transaction.cc |
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc |
index 70292be257f9b5c3af9d6f7c929f16c6dc78853b..4d1cf65019a3640bc84d1be201d7409d914ed963 100644 |
--- a/net/http/http_network_transaction.cc |
+++ b/net/http/http_network_transaction.cc |
@@ -419,8 +419,9 @@ bool HttpNetworkTransaction::GetLoadTimingInfo( |
void HttpNetworkTransaction::SetPriority(RequestPriority priority) { |
priority_ = priority; |
- // TODO(akalin): Plumb this through to |stream_request_| and |
- // |stream_|. |
+ if (stream_request_) |
+ stream_request_->SetPriority(priority); |
+ // TODO(akalin): Plumb this through to |stream_| also. |
} |
void HttpNetworkTransaction::OnStreamReady(const SSLConfig& used_ssl_config, |