replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287843
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_FeaturePolicyViolationReportBody_h
|
|
#define mozilla_dom_FeaturePolicyViolationReportBody_h
|
|
|
|
#include "mozilla/dom/Nullable.h"
|
|
#include "mozilla/dom/ReportBody.h"
|
|
#include "nsString.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
class FeaturePolicyViolationReportBody final : public ReportBody {
|
|
public:
|
|
FeaturePolicyViolationReportBody(nsIGlobalObject* aGlobal,
|
|
const nsAString& aFeatureId,
|
|
const nsACString& aSourceFile,
|
|
const Nullable<int32_t>& aLineNumber,
|
|
const Nullable<int32_t>& aColumnNumber,
|
|
const nsAString& aDisposition);
|
|
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
void GetFeatureId(nsAString& aFeatureId) const;
|
|
|
|
void GetSourceFile(nsACString& aSourceFile) const;
|
|
|
|
Nullable<int32_t> GetLineNumber() const;
|
|
|
|
Nullable<int32_t> GetColumnNumber() const;
|
|
|
|
void GetDisposition(nsAString& aDisposition) const;
|
|
|
|
protected:
|
|
void ToJSON(JSONWriter& aJSONWriter) const override;
|
|
|
|
private:
|
|
~FeaturePolicyViolationReportBody();
|
|
|
|
const nsString mFeatureId;
|
|
const nsCString mSourceFile;
|
|
const Nullable<int32_t> mLineNumber;
|
|
const Nullable<int32_t> mColumnNumber;
|
|
const nsString mDisposition;
|
|
};
|
|
|
|
} // namespace mozilla::dom
|
|
|
|
#endif // mozilla_dom_FeaturePolicyViolationReportBody_h
|