2015-10-23 06:25:43 +00:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#include "nsIContentPolicy.h"
|
2016-04-24 03:41:14 +00:00
|
|
|
#include "nsIAddonPolicyService.h"
|
2015-10-23 06:25:43 +00:00
|
|
|
|
2016-04-24 03:41:14 +00:00
|
|
|
class AddonContentPolicy : public nsIContentPolicy,
|
|
|
|
public nsIAddonContentPolicy
|
2015-10-23 06:25:43 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
virtual ~AddonContentPolicy();
|
|
|
|
|
|
|
|
public:
|
|
|
|
AddonContentPolicy();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICONTENTPOLICY
|
2016-04-24 03:41:14 +00:00
|
|
|
NS_DECL_NSIADDONCONTENTPOLICY
|
2015-10-23 06:25:43 +00:00
|
|
|
};
|