summaryrefslogtreecommitdiffstats
path: root/net/http/http_request_info.h
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-19 21:01:36 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-19 21:01:36 +0000
commit262eec8f3436504b5d6c9ea60fd2b9314b3cd495 (patch)
tree108e937f5e46b6828d62ca89c29446919002b1f6 /net/http/http_request_info.h
parent821572b27b959ab6fa5457cb41562dd7f2c48ab2 (diff)
downloadchromium_src-262eec8f3436504b5d6c9ea60fd2b9314b3cd495.zip
chromium_src-262eec8f3436504b5d6c9ea60fd2b9314b3cd495.tar.gz
chromium_src-262eec8f3436504b5d6c9ea60fd2b9314b3cd495.tar.bz2
[Net] Separate out priority field from HttpRequestInfo
This is in preparation for supporting reprioritization; HttpRequestInfo is assumed to be an unchanging struct, so priority can't live in it if it is something that can change. Also add DEFAULT_PRIORITY value and replace some uses of LOWEST with it. BUG=166689 Review URL: https://codereview.chromium.org/12833008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@189099 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http/http_request_info.h')
-rw-r--r--net/http/http_request_info.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/net/http/http_request_info.h b/net/http/http_request_info.h
index 08692d0..1f8c80c 100644
--- a/net/http/http_request_info.h
+++ b/net/http/http_request_info.h
@@ -10,7 +10,6 @@
#include "base/basictypes.h"
#include "googleurl/src/gurl.h"
#include "net/base/net_export.h"
-#include "net/base/request_priority.h"
#include "net/http/http_request_headers.h"
namespace net {
@@ -46,9 +45,6 @@ struct NET_EXPORT HttpRequestInfo {
// Any load flags (see load_flags.h).
int load_flags;
- // The priority level for this request.
- RequestPriority priority;
-
// The motivation behind this request.
RequestMotivation motivation;