2000-05-05 09:28:49 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2004-04-18 01:52:36 +04:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2000-05-05 09:28:49 +04:00
|
|
|
*
|
2004-04-18 01:52:36 +04:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2000-05-05 09:28:49 +04:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla code.
|
|
|
|
*
|
2004-04-18 01:52:36 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Zero-Knowledge Systems, Inc.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2000
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2000-05-05 09:28:49 +04:00
|
|
|
*
|
2004-04-18 01:52:36 +04:00
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2000-05-05 09:28:49 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 20:46:42 +04:00
|
|
|
|
2001-05-22 02:40:10 +04:00
|
|
|
interface nsIDOMWindow;
|
|
|
|
interface nsIURI;
|
2000-05-05 09:28:49 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for content policy mechanism. Implementations of this
|
|
|
|
* interface can be used to control loading of various types of out-of-line
|
|
|
|
* content, or processing of certain types of in-line content.
|
|
|
|
*/
|
|
|
|
|
|
|
|
[scriptable,uuid(1cb4085d-5407-4169-bcfe-4c5ba013fa5b)]
|
|
|
|
interface nsIContentPolicy : nsISupports
|
|
|
|
{
|
2001-05-22 02:40:10 +04:00
|
|
|
const PRInt32 OTHER = 0;
|
|
|
|
const PRInt32 SCRIPT = 1;
|
|
|
|
const PRInt32 IMAGE = 2;
|
|
|
|
const PRInt32 STYLESHEET = 3;
|
|
|
|
const PRInt32 OBJECT = 4;
|
|
|
|
const PRInt32 SUBDOCUMENT = 5;
|
|
|
|
const PRInt32 CONTROL_TAG = 6;
|
|
|
|
const PRInt32 RAW_URL = 7;
|
2002-06-22 02:47:42 +04:00
|
|
|
const PRInt32 DOCUMENT = 8;
|
2000-05-05 09:28:49 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Should the content at this location be loaded and processed?
|
|
|
|
*
|
|
|
|
*/
|
2001-05-22 02:40:10 +04:00
|
|
|
boolean shouldLoad(in PRInt32 contentType, in nsIURI contentLocation,
|
|
|
|
in nsISupports ctxt, in nsIDOMWindow window);
|
2000-05-05 09:28:49 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Should the contents of the element in question be processed?
|
|
|
|
*/
|
2001-05-22 02:40:10 +04:00
|
|
|
boolean shouldProcess(in PRInt32 contentType, in nsIURI documentLocation,
|
|
|
|
in nsISupports ctxt, in nsIDOMWindow window);
|
2000-05-05 09:28:49 +04:00
|
|
|
};
|