2007-08-16 04:43:12 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +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/. */
|
2007-08-16 04:43:12 +04:00
|
|
|
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2014-10-15 17:23:22 +04:00
|
|
|
[scriptable, uuid(a6dcc76e-9f62-4cc1-a470-b483a1a6f096)]
|
2007-08-16 04:43:12 +04:00
|
|
|
interface nsIBlocklistService : nsISupports
|
|
|
|
{
|
2008-11-02 15:13:48 +03:00
|
|
|
// Indicates that the item does not appear in the blocklist.
|
|
|
|
const unsigned long STATE_NOT_BLOCKED = 0;
|
|
|
|
// Indicates that the item is in the blocklist but the problem is not severe
|
|
|
|
// enough to warant forcibly blocking.
|
|
|
|
const unsigned long STATE_SOFTBLOCKED = 1;
|
|
|
|
// Indicates that the item should be blocked and never used.
|
|
|
|
const unsigned long STATE_BLOCKED = 2;
|
|
|
|
|
2018-04-23 19:11:34 +03:00
|
|
|
// Unused; Please increment if we add more blocklist states.
|
2021-04-06 22:28:14 +03:00
|
|
|
const unsigned long STATE_MAX = 3;
|
2011-05-26 01:31:56 +04:00
|
|
|
|
2018-03-06 19:31:24 +03:00
|
|
|
readonly attribute boolean isLoaded;
|
2010-09-02 05:35:06 +04:00
|
|
|
};
|