Bug 1892041 - Part 1: Update test262 features. r=spidermonkey-reviewers,dminor
[gecko.git] / dom / base / CORSMode.h
blob25ad0437ba002c2ad8f31b03f8df111814b15342
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 file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef CORSMode_h_
8 #define CORSMode_h_
10 #include <stdint.h>
12 namespace mozilla {
14 enum CORSMode : uint8_t {
15 /**
16 * The default of not using CORS to validate cross-origin loads.
18 CORS_NONE,
20 /**
21 * Validate cross-site loads using CORS, but do not send any credentials
22 * (cookies, HTTP auth logins, etc) along with the request.
24 CORS_ANONYMOUS,
26 /**
27 * Validate cross-site loads using CORS, and send credentials such as cookies
28 * and HTTP auth logins along with the request.
30 CORS_USE_CREDENTIALS
33 constexpr auto kFirstCORSMode = CORS_NONE;
34 constexpr auto kLastCORSMode = CORS_USE_CREDENTIALS;
36 } // namespace mozilla
38 #endif /* CORSMode_h_ */