From 6991c13744e49c480006d7b8c034ae689248ecb4 Mon Sep 17 00:00:00 2001 From: Alexander David Frick Date: Fri, 10 Jun 2022 03:58:28 -0700 Subject: [PATCH] Minimize --- net/url_request/url_request_http_job.cc | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc index e3e53e33..3b9c4afe 100644 --- a/net/url_request/url_request_http_job.cc +++ b/net/url_request/url_request_http_job.cc @@ -229,18 +229,7 @@ URLRequestHttpJob::URLRequestHttpJob( URLRequest* request, const HttpUserAgentSettings* http_user_agent_settings) : URLRequestJob(request), - num_cookie_lines_left_(0), - priority_(DEFAULT_PRIORITY), - response_info_(nullptr), - proxy_auth_state_(AUTH_STATE_DONT_NEED_AUTH), - server_auth_state_(AUTH_STATE_DONT_NEED_AUTH), - read_in_progress_(false), - throttling_entry_(nullptr), - done_(false), - awaiting_callback_(false), - http_user_agent_settings_(http_user_agent_settings), - total_received_bytes_from_previous_transactions_(0), - total_sent_bytes_from_previous_transactions_(0) { + http_user_agent_settings_(http_user_agent_settings) { URLRequestThrottlerManager* manager = request->context()->throttler_manager(); if (manager) throttling_entry_ = manager->RegisterRequestUrl(request->url());