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_FeaturePolicyViolationReportBody_h
8 #define mozilla_dom_FeaturePolicyViolationReportBody_h
10 #include "mozilla/dom/ReportBody.h"
11 #include "mozilla/dom/Nullable.h"
14 namespace mozilla::dom
{
16 class FeaturePolicyViolationReportBody final
: public ReportBody
{
18 FeaturePolicyViolationReportBody(nsIGlobalObject
* aGlobal
,
19 const nsAString
& aFeatureId
,
20 const nsAString
& aSourceFile
,
21 const Nullable
<int32_t>& aLineNumber
,
22 const Nullable
<int32_t>& aColumnNumber
,
23 const nsAString
& aDisposition
);
25 JSObject
* WrapObject(JSContext
* aCx
,
26 JS::Handle
<JSObject
*> aGivenProto
) override
;
28 void GetFeatureId(nsAString
& aFeatureId
) const;
30 void GetSourceFile(nsAString
& aSourceFile
) const;
32 Nullable
<int32_t> GetLineNumber() const;
34 Nullable
<int32_t> GetColumnNumber() const;
36 void GetDisposition(nsAString
& aDisposition
) const;
39 void ToJSON(JSONWriter
& aJSONWriter
) const override
;
42 ~FeaturePolicyViolationReportBody();
44 const nsString mFeatureId
;
45 const nsString mSourceFile
;
46 const Nullable
<int32_t> mLineNumber
;
47 const Nullable
<int32_t> mColumnNumber
;
48 const nsString mDisposition
;
51 } // namespace mozilla::dom
53 #endif // mozilla_dom_FeaturePolicyViolationReportBody_h