summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/network/ResourceLoadPriority.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/network/ResourceLoadPriority.h')
-rw-r--r--Source/WebCore/platform/network/ResourceLoadPriority.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/WebCore/platform/network/ResourceLoadPriority.h b/Source/WebCore/platform/network/ResourceLoadPriority.h
index 1c9d5d2..45238d7 100644
--- a/Source/WebCore/platform/network/ResourceLoadPriority.h
+++ b/Source/WebCore/platform/network/ResourceLoadPriority.h
@@ -28,15 +28,15 @@
namespace WebCore {
-enum ResourceLoadPriority {
- ResourceLoadPriorityVeryLow,
- ResourceLoadPriorityLow,
- ResourceLoadPriorityMedium,
- ResourceLoadPriorityHigh,
- ResourceLoadPriorityLowest = ResourceLoadPriorityVeryLow,
- ResourceLoadPriorityHighest = ResourceLoadPriorityHigh,
+enum ResourceLoadPriority {
// The unresolved priority is here for the convenience of the clients. It should not be passed to the ResourceLoadScheduler.
- ResourceLoadPriorityUnresolved,
+ ResourceLoadPriorityUnresolved = -1,
+ ResourceLoadPriorityVeryLow = 0,
+ ResourceLoadPriorityLow,
+ ResourceLoadPriorityMedium,
+ ResourceLoadPriorityHigh,
+ ResourceLoadPriorityLowest = ResourceLoadPriorityVeryLow,
+ ResourceLoadPriorityHighest = ResourceLoadPriorityHigh,
};
}