summaryrefslogtreecommitdiffstats
path: root/dom/html/FetchPriority.h
diff options
context:
space:
mode:
Diffstat (limited to 'dom/html/FetchPriority.h')
-rw-r--r--dom/html/FetchPriority.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/dom/html/FetchPriority.h b/dom/html/FetchPriority.h
index 5719577771..525f0ffb17 100644
--- a/dom/html/FetchPriority.h
+++ b/dom/html/FetchPriority.h
@@ -21,6 +21,17 @@ enum class FetchPriority : uint8_t { High, Low, Auto };
FetchPriority ToFetchPriority(RequestPriority aRequestPriority);
+#define FETCH_PRIORITY_ADJUSTMENT_FOR(feature, fetchPriority) \
+ (fetchPriority == FetchPriority::Auto \
+ ? StaticPrefs::network_fetchpriority_adjustments_##feature##_auto() \
+ : (fetchPriority == FetchPriority::High \
+ ? StaticPrefs:: \
+ network_fetchpriority_adjustments_##feature##_high() \
+ : (fetchPriority == FetchPriority::Low \
+ ? StaticPrefs:: \
+ network_fetchpriority_adjustments_##feature##_low() \
+ : 0)))
+
// @param aSupportsPriority see <nsISupportsPriority.idl>.
void LogPriorityMapping(LazyLogModule& aLazyLogModule,
FetchPriority aFetchPriority,