2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2018-11-30 18:39:55 +03:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-11-13 04:43:35 +04:00
|
|
|
/* 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 DomainPolicy_h__
|
|
|
|
#define DomainPolicy_h__
|
|
|
|
|
|
|
|
#include "nsIDomainPolicy.h"
|
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsURIHashKey.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2015-03-24 17:29:16 +03:00
|
|
|
enum DomainSetChangeType {
|
|
|
|
ACTIVATE_POLICY,
|
|
|
|
DEACTIVATE_POLICY,
|
|
|
|
ADD_DOMAIN,
|
|
|
|
REMOVE_DOMAIN,
|
|
|
|
CLEAR_DOMAINS
|
|
|
|
};
|
|
|
|
|
|
|
|
enum DomainSetType {
|
|
|
|
NO_TYPE,
|
2018-10-31 20:56:43 +03:00
|
|
|
BLOCKLIST,
|
|
|
|
SUPER_BLOCKLIST,
|
|
|
|
ALLOWLIST,
|
|
|
|
SUPER_ALLOWLIST
|
2015-03-24 17:29:16 +03:00
|
|
|
};
|
|
|
|
|
2015-07-14 14:59:00 +03:00
|
|
|
class DomainSet final : public nsIDomainSet {
|
2013-11-13 04:43:35 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMAINSET
|
|
|
|
|
2015-03-24 17:29:16 +03:00
|
|
|
explicit DomainSet(DomainSetType aType) : mType(aType) {}
|
|
|
|
|
2020-03-31 21:47:30 +03:00
|
|
|
void CloneSet(nsTArray<RefPtr<nsIURI>>* aDomains);
|
2013-11-13 04:43:35 +04:00
|
|
|
|
|
|
|
protected:
|
2014-06-24 02:40:03 +04:00
|
|
|
virtual ~DomainSet() {}
|
2013-11-13 04:43:35 +04:00
|
|
|
nsTHashtable<nsURIHashKey> mHashTable;
|
2015-03-24 17:29:16 +03:00
|
|
|
DomainSetType mType;
|
2013-11-13 04:43:35 +04:00
|
|
|
};
|
|
|
|
|
2015-07-14 14:59:00 +03:00
|
|
|
class DomainPolicy final : public nsIDomainPolicy {
|
2015-07-14 14:59:00 +03:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOMAINPOLICY
|
|
|
|
DomainPolicy();
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~DomainPolicy();
|
|
|
|
|
2018-10-31 20:56:43 +03:00
|
|
|
RefPtr<DomainSet> mBlocklist;
|
|
|
|
RefPtr<DomainSet> mSuperBlocklist;
|
|
|
|
RefPtr<DomainSet> mAllowlist;
|
|
|
|
RefPtr<DomainSet> mSuperAllowlist;
|
2015-07-14 14:59:00 +03:00
|
|
|
};
|
|
|
|
|
2013-11-13 04:43:35 +04:00
|
|
|
} /* namespace mozilla */
|
|
|
|
|
|
|
|
#endif /* DomainPolicy_h__ */
|