Index: net/url_request/url_request_http_job.cc |
diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc |
index 8c76efb1febb8d8c920d0934128b4f177653926a..ebd8d49eb152f4a4670a2d49a801e4ba2c043bc9 100644 |
--- a/net/url_request/url_request_http_job.cc |
+++ b/net/url_request/url_request_http_job.cc |
@@ -448,8 +448,9 @@ void URLRequestHttpJob::StartTransactionInternal() { |
base::Bind(&URLRequestHttpJob::NotifyBeforeSendProxyHeadersCallback, |
base::Unretained(this))); |
- if (!throttling_entry_.get() || |
- !throttling_entry_->ShouldRejectRequest(*request_)) { |
+ if (!throttling_entry_ || |
+ !throttling_entry_->ShouldRejectRequest( |
+ *request_, network_delegate())) { |
rv = transaction_->Start( |
&request_info_, start_callback_, request_->net_log()); |
start_time_ = base::TimeTicks::Now(); |