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/. */
6 
7 #ifndef CORSMode_h_
8 #define CORSMode_h_
9 
10 #include <stdint.h>
11 
12 namespace mozilla {
13 
14 enum CORSMode : uint8_t {
15   /**
16    * The default of not using CORS to validate cross-origin loads.
17    */
18   CORS_NONE,
19 
20   /**
21    * Validate cross-site loads using CORS, but do not send any credentials
22    * (cookies, HTTP auth logins, etc) along with the request.
23    */
24   CORS_ANONYMOUS,
25 
26   /**
27    * Validate cross-site loads using CORS, and send credentials such as cookies
28    * and HTTP auth logins along with the request.
29    */
30   CORS_USE_CREDENTIALS
31 };
32 
33 }  // namespace mozilla
34 
35 #endif /* CORSMode_h_ */
36