Copy as Markdown

Other Tools

/* THIS FILE IS AUTOGENERATED FROM CSPReport.webidl BY Codegen.py - DO NOT EDIT */
#ifndef DOM_CSPREPORTBINDING_H_
#define DOM_CSPREPORTBINDING_H_
#include "SecurityPolicyViolationEventBinding.h"
#include "js/CallAndConstruct.h"
#include "js/RootingAPI.h"
#include "js/TypeDecls.h"
#include "mozilla/dom/BindingDeclarations.h"
#include "mozilla/dom/Nullable.h"
namespace mozilla {
namespace dom {
struct CSPReportAtoms;
struct CSPReportProperties;
struct CSPReportPropertiesAtoms;
struct NativePropertyHooks;
class ProtoAndIfaceCache;
} // namespace dom
} // namespace mozilla
namespace mozilla::dom {
struct CSPReportProperties : public DictionaryBase
{
MOZ_INIT_OUTSIDE_CTOR nsString mBlocked_uri;
MOZ_INIT_OUTSIDE_CTOR Optional<int32_t> mColumn_number;
MOZ_INIT_OUTSIDE_CTOR SecurityPolicyViolationEventDisposition mDisposition;
MOZ_INIT_OUTSIDE_CTOR nsString mDocument_uri;
MOZ_INIT_OUTSIDE_CTOR nsString mEffective_directive;
MOZ_INIT_OUTSIDE_CTOR Optional<int32_t> mLine_number;
MOZ_INIT_OUTSIDE_CTOR nsString mOriginal_policy;
MOZ_INIT_OUTSIDE_CTOR nsString mReferrer;
MOZ_INIT_OUTSIDE_CTOR Optional<nsString> mScript_sample;
MOZ_INIT_OUTSIDE_CTOR Optional<nsString> mSource_file;
MOZ_INIT_OUTSIDE_CTOR int32_t mStatus_code;
MOZ_INIT_OUTSIDE_CTOR nsString mViolated_directive;
CSPReportProperties();
explicit inline CSPReportProperties(const FastDictionaryInitializer& )
{
// Do nothing here; this is used by our "Fast" subclass
}
CSPReportProperties(CSPReportProperties&& aOther) = default;
explicit inline CSPReportProperties(const CSPReportProperties& aOther)
{
*this = aOther;
}
bool
Init(const char* sourceDescription = "Value", bool passedToJSImpl = false);
bool
ToObjectInternal(JSContext* cx, JS::MutableHandle<JS::Value> rval) const;
void
TraceDictionary(JSTracer* trc);
CSPReportProperties&
operator=(const CSPReportProperties& aOther);
private:
static bool
InitIds(JSContext* cx, CSPReportPropertiesAtoms* atomsCache);
};
namespace binding_detail {
struct FastCSPReportProperties : public CSPReportProperties
{
inline FastCSPReportProperties()
: CSPReportProperties(FastDictionaryInitializer())
{
// Doesn't matter what int we pass to the parent constructor
}
};
} // namespace binding_detail
struct CSPReport : public DictionaryBase
{
MOZ_INIT_OUTSIDE_CTOR CSPReportProperties mCsp_report;
CSPReport();
explicit inline CSPReport(const FastDictionaryInitializer& )
: mCsp_report(FastDictionaryInitializer())
{
// Do nothing here; this is used by our "Fast" subclass
}
CSPReport(CSPReport&& aOther) = default;
explicit inline CSPReport(const CSPReport& aOther)
: mCsp_report(FastDictionaryInitializer())
{
*this = aOther;
}
bool
Init(const char* sourceDescription = "Value", bool passedToJSImpl = false);
bool
ToObjectInternal(JSContext* cx, JS::MutableHandle<JS::Value> rval) const;
bool
ToJSON(nsAString& aJSON) const;
void
TraceDictionary(JSTracer* trc);
CSPReport&
operator=(const CSPReport& aOther);
private:
static bool
InitIds(JSContext* cx, CSPReportAtoms* atomsCache);
};
namespace binding_detail {
struct FastCSPReport : public CSPReport
{
inline FastCSPReport()
: CSPReport(FastDictionaryInitializer())
{
// Doesn't matter what int we pass to the parent constructor
}
};
} // namespace binding_detail
} // namespace mozilla::dom
#endif // DOM_CSPREPORTBINDING_H_