1999-11-02 22:36:43 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 3; 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/. */
|
1999-11-02 22:36:43 +03:00
|
|
|
|
|
|
|
#include "nsIURILoader.idl"
|
|
|
|
|
|
|
|
/*
|
|
|
|
nsCURILoader implements:
|
|
|
|
-------------------------
|
|
|
|
nsIURILoader
|
|
|
|
*/
|
|
|
|
|
|
|
|
%{ C++
|
2000-09-14 03:57:52 +04:00
|
|
|
#define NS_CONTENT_HANDLER_CONTRACTID "@mozilla.org/uriloader/content-handler;1"
|
|
|
|
#define NS_CONTENT_HANDLER_CONTRACTID_PREFIX NS_CONTENT_HANDLER_CONTRACTID "?type="
|
2000-02-04 11:43:34 +03:00
|
|
|
|
2006-02-02 21:37:11 +03:00
|
|
|
/**
|
|
|
|
* A category where content listeners can register. The name of the entry must
|
|
|
|
* be the content that this listener wants to handle, the value must be a
|
|
|
|
* contract ID for the listener. It will be created using createInstance (not
|
|
|
|
* getService).
|
|
|
|
*
|
|
|
|
* Listeners added this way are tried after the initial target of the load and
|
|
|
|
* after explicitly registered listeners (nsIURILoader::registerContentListener).
|
|
|
|
*
|
|
|
|
* These listeners must implement at least nsIURIContentListener (and
|
|
|
|
* nsISupports).
|
|
|
|
*
|
|
|
|
* @see nsICategoryManager
|
|
|
|
* @see nsIURIContentListener
|
|
|
|
*/
|
2001-11-30 03:07:13 +03:00
|
|
|
#define NS_CONTENT_LISTENER_CATEGORYMANAGER_ENTRY "external-uricontentlisteners"
|
|
|
|
|
1999-11-06 01:53:21 +03:00
|
|
|
%}
|