2001-04-13 02:44:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00: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/. */
|
2001-04-13 02:44:30 +00:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2001-06-18 06:36:37 +00:00
|
|
|
interface nsIURI;
|
2005-03-23 21:09:02 +00:00
|
|
|
interface imgIRequest;
|
|
|
|
interface nsIProperties;
|
2001-06-18 06:36:37 +00:00
|
|
|
|
2001-04-13 02:44:30 +00:00
|
|
|
/**
|
|
|
|
* imgICache interface
|
|
|
|
*
|
|
|
|
* @author Stuart Parmenter <pavlov@netscape.com>
|
2005-03-23 21:09:02 +00:00
|
|
|
* @version 0.1
|
2001-04-13 02:44:30 +00:00
|
|
|
* @see imagelib2
|
|
|
|
*/
|
2012-12-14 19:42:36 +00:00
|
|
|
[scriptable, builtinclass, uuid(b06e0fa5-d6e2-4fa3-8fc0-7775aed96522)]
|
2001-04-13 02:44:30 +00:00
|
|
|
interface imgICache : nsISupports
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Evict images from the cache.
|
|
|
|
*
|
|
|
|
* @param chrome If TRUE, evict only chrome images.
|
|
|
|
* If FALSE, evict everything except chrome images.
|
|
|
|
*/
|
|
|
|
void clearCache(in boolean chrome);
|
2001-06-18 06:36:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Evict images from the cache.
|
|
|
|
*
|
|
|
|
* @param uri The URI to remove.
|
2014-12-05 23:12:08 +00:00
|
|
|
* @throws NS_ERROR_NOT_AVAILABLE if \a uri was unable to be removed from
|
|
|
|
* the cache.
|
2001-06-18 06:36:37 +00:00
|
|
|
*/
|
|
|
|
void removeEntry(in nsIURI uri);
|
2005-03-23 21:09:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find Properties
|
|
|
|
* Used to get properties such as 'type' and 'content-disposition'
|
2014-12-05 23:12:08 +00:00
|
|
|
* 'type' is a nsISupportsCString containing the images' mime type such as
|
|
|
|
* 'image/png'
|
2005-03-23 21:09:02 +00:00
|
|
|
* 'content-disposition' will be a nsISupportsCString containing the header
|
2014-12-05 23:12:08 +00:00
|
|
|
* If you call this before any data has been loaded from a URI, it will
|
|
|
|
* succeed, but come back empty.
|
2005-03-23 21:09:02 +00:00
|
|
|
*
|
2012-10-24 18:40:41 +00:00
|
|
|
* Hopefully this will be removed with bug 805119
|
|
|
|
*
|
2005-03-23 21:09:02 +00:00
|
|
|
* @param uri The URI to look up.
|
|
|
|
* @returns NULL if the URL was not found in the cache
|
|
|
|
*/
|
|
|
|
nsIProperties findEntryProperties(in nsIURI uri);
|
2012-06-26 04:20:12 +00:00
|
|
|
|
|
|
|
/**
|
2014-12-05 23:12:08 +00:00
|
|
|
* Make this cache instance respect private browsing notifications. This
|
|
|
|
* entails clearing the chrome and content caches whenever the
|
|
|
|
* last-pb-context-exited notification is observed.
|
2012-06-26 04:20:12 +00:00
|
|
|
*/
|
|
|
|
void respectPrivacyNotifications();
|
2001-04-13 02:44:30 +00:00
|
|
|
};
|