replaced by .editorconfig # ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D287843
42 lines
1.4 KiB
C++
42 lines
1.4 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 IntegrityPolicyService_h_
|
|
#define IntegrityPolicyService_h_
|
|
|
|
#include "mozilla/dom/IntegrityPolicy.h"
|
|
#include "nsIContentPolicy.h"
|
|
|
|
#define NS_INTEGRITYPOLICYSERVICE_CONTRACTID \
|
|
"@mozilla.org/integritypolicyservice;1"
|
|
#define INTEGRITYPOLICYSERVICE_CID \
|
|
{0x3662958c, 0x0e34, 0x4f57, {0xbc, 0x6d, 0x2a, 0xcc, 0xde, 0xb4, 0x34, 0x2e}}
|
|
|
|
namespace mozilla::dom {
|
|
|
|
class IntegrityPolicyService : public nsIContentPolicy {
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSICONTENTPOLICY
|
|
|
|
IntegrityPolicyService() = default;
|
|
|
|
bool ShouldRequestBeBlocked(nsIURI* aContentLocation, nsILoadInfo* aLoadInfo);
|
|
|
|
protected:
|
|
virtual ~IntegrityPolicyService();
|
|
|
|
void ReportToConsole(nsIURI* aContentLocation, nsILoadInfo* aLoadInfo,
|
|
IntegrityPolicy::DestinationType aDestination,
|
|
bool aEnforce, bool aReportOnly) const;
|
|
|
|
void ReportViolation(nsIURI* aContentLocation, nsILoadInfo* aLoadInfo,
|
|
IntegrityPolicy::DestinationType aDestination,
|
|
const IntegrityPolicy* aPolicy, bool aEnforce,
|
|
bool aReportOnly) const;
|
|
};
|
|
} // namespace mozilla::dom
|
|
|
|
#endif /* IntegrityPolicyService_h_ */
|