| Index: net/http/http_cache_transaction.cc
|
| diff --git a/net/http/http_cache_transaction.cc b/net/http/http_cache_transaction.cc
|
| index 683dff36243b0be637f6969b34656107a135173e..c45a8a00f559f7d4365cc919e62c7533d8a4f824 100644
|
| --- a/net/http/http_cache_transaction.cc
|
| +++ b/net/http/http_cache_transaction.cc
|
| @@ -467,6 +467,12 @@ bool HttpCache::Transaction::GetLoadTimingInfo(
|
| return false;
|
| }
|
|
|
| +void HttpCache::Transaction::SetPriority(RequestPriority priority) {
|
| + priority_ = priority;
|
| + if (network_trans_)
|
| + network_trans_->SetPriority(priority_);
|
| +}
|
| +
|
| //-----------------------------------------------------------------------------
|
|
|
| void HttpCache::Transaction::DoCallback(int rv) {
|
|
|