diff options
author | eustas@chromium.org <eustas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-26 21:57:36 +0000 |
---|---|---|
committer | eustas@chromium.org <eustas@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-26 21:57:36 +0000 |
commit | 3f0441366d6f6e378bc91f77db9ff2cec2775674 (patch) | |
tree | 7494630e8e3478679d226b5a58c1495e3e6afc7d | |
parent | ed34dd633a023ffd93a3ee247e5c4629c54b3f37 (diff) | |
download | chromium_src-3f0441366d6f6e378bc91f77db9ff2cec2775674.zip chromium_src-3f0441366d6f6e378bc91f77db9ff2cec2775674.tar.gz chromium_src-3f0441366d6f6e378bc91f77db9ff2cec2775674.tar.bz2 |
Remove unused request_id member from HttpRequestInfo.
EOM
BUG=
Review URL: https://codereview.chromium.org/24743002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225583 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | net/http/http_request_info.cc | 1 | ||||
-rw-r--r-- | net/http/http_request_info.h | 4 | ||||
-rw-r--r-- | net/url_request/url_request_ftp_job.cc | 1 | ||||
-rw-r--r-- | net/url_request/url_request_http_job.cc | 1 |
4 files changed, 0 insertions, 7 deletions
diff --git a/net/http/http_request_info.cc b/net/http/http_request_info.cc index 7feb4ac..bffc96c 100644 --- a/net/http/http_request_info.cc +++ b/net/http/http_request_info.cc @@ -10,7 +10,6 @@ HttpRequestInfo::HttpRequestInfo() : upload_data_stream(NULL), load_flags(0), motivation(NORMAL_MOTIVATION), - request_id(0), privacy_mode(kPrivacyModeDisabled) { } diff --git a/net/http/http_request_info.h b/net/http/http_request_info.h index 607bba5..a587a42 100644 --- a/net/http/http_request_info.h +++ b/net/http/http_request_info.h @@ -49,10 +49,6 @@ struct NET_EXPORT HttpRequestInfo { // The motivation behind this request. RequestMotivation motivation; - // An optional globally unique identifier for this request for use by the - // consumer. 0 is invalid. - uint64 request_id; - // If enabled, then request must be sent over connection that cannot be // tracked by the server (e.g. without channel id). PrivacyMode privacy_mode; diff --git a/net/url_request/url_request_ftp_job.cc b/net/url_request/url_request_ftp_job.cc index eda245c..9946f01 100644 --- a/net/url_request/url_request_ftp_job.cc +++ b/net/url_request/url_request_ftp_job.cc @@ -186,7 +186,6 @@ void URLRequestFtpJob::StartHttpTransaction() { http_request_info_.url = request_->url(); http_request_info_.method = request_->method(); http_request_info_.load_flags = request_->load_flags(); - http_request_info_.request_id = request_->identifier(); int rv = request_->context()->http_transaction_factory()->CreateTransaction( priority_, &http_transaction_, NULL); diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc index dd11a1b..204e22a 100644 --- a/net/url_request/url_request_http_job.cc +++ b/net/url_request/url_request_http_job.cc @@ -324,7 +324,6 @@ void URLRequestHttpJob::Start() { request_info_.url = request_->url(); request_info_.method = request_->method(); request_info_.load_flags = request_->load_flags(); - request_info_.request_id = request_->identifier(); // Enable privacy mode if cookie settings or flags tell us not send or // save cookies. bool enable_privacy_mode = |