tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

FeaturePolicyViolationReportBody.h (1779B)


      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/. */
      6 
      7 #ifndef mozilla_dom_FeaturePolicyViolationReportBody_h
      8 #define mozilla_dom_FeaturePolicyViolationReportBody_h
      9 
     10 #include "mozilla/dom/Nullable.h"
     11 #include "mozilla/dom/ReportBody.h"
     12 #include "nsString.h"
     13 
     14 namespace mozilla::dom {
     15 
     16 class FeaturePolicyViolationReportBody final : public ReportBody {
     17 public:
     18  FeaturePolicyViolationReportBody(nsIGlobalObject* aGlobal,
     19                                   const nsAString& aFeatureId,
     20                                   const nsACString& aSourceFile,
     21                                   const Nullable<int32_t>& aLineNumber,
     22                                   const Nullable<int32_t>& aColumnNumber,
     23                                   const nsAString& aDisposition);
     24 
     25  JSObject* WrapObject(JSContext* aCx,
     26                       JS::Handle<JSObject*> aGivenProto) override;
     27 
     28  void GetFeatureId(nsAString& aFeatureId) const;
     29 
     30  void GetSourceFile(nsACString& aSourceFile) const;
     31 
     32  Nullable<int32_t> GetLineNumber() const;
     33 
     34  Nullable<int32_t> GetColumnNumber() const;
     35 
     36  void GetDisposition(nsAString& aDisposition) const;
     37 
     38 protected:
     39  void ToJSON(JSONWriter& aJSONWriter) const override;
     40 
     41 private:
     42  ~FeaturePolicyViolationReportBody();
     43 
     44  const nsString mFeatureId;
     45  const nsCString mSourceFile;
     46  const Nullable<int32_t> mLineNumber;
     47  const Nullable<int32_t> mColumnNumber;
     48  const nsString mDisposition;
     49 };
     50 
     51 }  // namespace mozilla::dom
     52 
     53 #endif  // mozilla_dom_FeaturePolicyViolationReportBody_h