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/. */
14 enum CORSMode
: uint8_t {
16 * The default of not using CORS to validate cross-origin loads.
21 * Validate cross-site loads using CORS, but do not send any credentials
22 * (cookies, HTTP auth logins, etc) along with the request.
27 * Validate cross-site loads using CORS, and send credentials such as cookies
28 * and HTTP auth logins along with the request.
33 constexpr auto kFirstCORSMode
= CORS_NONE
;
34 constexpr auto kLastCORSMode
= CORS_USE_CREDENTIALS
;
36 } // namespace mozilla
38 #endif /* CORSMode_h_ */