Backed out changeset 62f7af8fe549 (bug 1843981) for causing valgrind bustage. CLOSED...
[gecko.git] / dom / html / FetchPriority.h
blob9c71c7997d07f6d855094df7577006ed50fad28b
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_FetchPriority_h
8 #define mozilla_dom_FetchPriority_h
10 #include <cstdint>
12 namespace mozilla::dom {
14 // <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#fetch-priority-attributes>.
15 enum class FetchPriority : uint8_t { High, Low, Auto };
17 extern const char* kFetchPriorityAttributeValueHigh;
18 extern const char* kFetchPriorityAttributeValueLow;
19 extern const char* kFetchPriorityAttributeValueAuto;
21 } // namespace mozilla::dom
23 #endif // mozilla_dom_FetchPriority_h