зеркало из https://github.com/mozilla/gecko-dev.git
58 строки
1.7 KiB
C++
58 строки
1.7 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/ReportBody.h"
|
|
#include "mozilla/dom/Date.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class FeaturePolicyViolationReportBody final : public ReportBody
|
|
{
|
|
public:
|
|
FeaturePolicyViolationReportBody(nsPIDOMWindowInner* aWindow,
|
|
const nsAString& aFeatureId,
|
|
const nsAString& 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(nsAString& aSourceFile) const;
|
|
|
|
Nullable<int32_t>
|
|
GetLineNumber() const;
|
|
|
|
Nullable<int32_t>
|
|
GetColumnNumber() const;
|
|
|
|
void
|
|
GetDisposition(nsAString& aDisposition) const;
|
|
|
|
private:
|
|
~FeaturePolicyViolationReportBody();
|
|
|
|
const nsString mFeatureId;
|
|
const nsString mSourceFile;
|
|
const Nullable<int32_t> mLineNumber;
|
|
const Nullable<int32_t> mColumnNumber;
|
|
const nsString mDisposition;
|
|
};
|
|
|
|
} // dom namespace
|
|
} // mozilla namespace
|
|
|
|
#endif // mozilla_dom_FeaturePolicyViolationReportBody_h
|