summaryrefslogtreecommitdiff
path: root/chromium/net/base/request_priority.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/base/request_priority.h')
-rw-r--r--chromium/net/base/request_priority.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/chromium/net/base/request_priority.h b/chromium/net/base/request_priority.h
new file mode 100644
index 00000000000..6efd3ab37b1
--- /dev/null
+++ b/chromium/net/base/request_priority.h
@@ -0,0 +1,25 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_BASE_REQUEST_PRIORITY_H__
+#define NET_BASE_REQUEST_PRIORITY_H__
+
+namespace net {
+
+// Prioritization used in various parts of the networking code such
+// as connection prioritization and resource loading prioritization.
+enum RequestPriority {
+ IDLE = 0,
+ MINIMUM_PRIORITY = IDLE,
+ LOWEST,
+ DEFAULT_PRIORITY = LOWEST,
+ LOW,
+ MEDIUM,
+ HIGHEST,
+ NUM_PRIORITIES,
+};
+
+} // namespace net
+
+#endif // NET_BASE_REQUEST_PRIORITY_H__