Source code
Revision control
Copy as Markdown
Other Tools
/* 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
#ifndef mozilla_dom_ConnectionAllowlistsService_h_
#define mozilla_dom_ConnectionAllowlistsService_h_
#include "nsIContentPolicy.h"
namespace mozilla::dom {
// Content policy enforcing connection allowlists.
class ConnectionAllowlistsService final : public nsIContentPolicy {
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTENTPOLICY
ConnectionAllowlistsService() = default;
private:
~ConnectionAllowlistsService() = default;
};
} // namespace mozilla::dom
#endif /* mozilla_dom_ConnectionAllowlistsService_h_ */