summaryrefslogtreecommitdiffstats
path: root/ipc/glue/PBackgroundSharedTypes.ipdlh
blob: 92175b782dea318d77c97177066992ad169d627a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

using mozilla::OriginAttributes from "mozilla/ipc/BackgroundUtils.h";
using struct mozilla::void_t from "mozilla/ipc/IPCCore.h";

namespace mozilla {
namespace ipc {

[Comparable] struct ContentSecurityPolicy
{
  nsString policy;
  bool reportOnlyFlag;
  bool deliveredViaMetaTagFlag;
};

[Comparable] struct ContentPrincipalInfo
{
  OriginAttributes attrs;

  // Origin is not simply a part of the spec. Based on the scheme of the URI
  // spec, we generate different kind of origins: for instance any file: URL
  // shares the same origin, about: URLs have the full spec as origin and so
  // on.
  // Another important reason why we have this attribute is that
  // ContentPrincipalInfo is used out of the main-thread. Having this value
  // here allows us to retrive the origin without creating a full nsIPrincipal.
  nsCString originNoSuffix;

  nsCString spec;

  nsCString? domain;

  // Like originNoSuffix, baseDomain is used out of the main-thread.
  nsCString baseDomain;
};

[Comparable] struct SystemPrincipalInfo
{ };

[Comparable] struct NullPrincipalInfo
{
  OriginAttributes attrs;
  nsCString spec;
};

[Comparable] struct ExpandedPrincipalInfo
{
  OriginAttributes attrs;
  PrincipalInfo[] allowlist;
};

[Comparable] union PrincipalInfo
{
  ContentPrincipalInfo;
  SystemPrincipalInfo;
  NullPrincipalInfo;
  ExpandedPrincipalInfo;
};

[Comparable] struct CSPInfo
{
  ContentSecurityPolicy[] policyInfos;
  PrincipalInfo requestPrincipalInfo;
  nsCString selfURISpec;
  nsString referrer;
  uint64_t innerWindowID;
  bool skipAllowInlineStyleCheck;
};

[Comparable] struct WebTransportHash {
  nsCString algorithm;
  uint8_t[] value;
};

} // namespace ipc
} // namespace mozilla