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 /net/http | |
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
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_request_info.cc | 1 | ||||
-rw-r--r-- | net/http/http_request_info.h | 4 |
2 files changed, 0 insertions, 5 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; |