2001-04-13 06:44:30 +04:00
|
|
|
/* -*- Mode: C++; 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/. */
|
2001-04-13 06:44:30 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2005-03-24 00:09:02 +03:00
|
|
|
interface imgIRequest;
|
2018-06-20 18:57:50 +03:00
|
|
|
interface nsIPrincipal;
|
2005-03-24 00:09:02 +03:00
|
|
|
interface nsIProperties;
|
2015-10-26 23:03:26 +03:00
|
|
|
interface nsIURI;
|
2001-06-18 10:36:37 +04:00
|
|
|
|
2018-05-11 20:46:15 +03:00
|
|
|
webidl Document;
|
|
|
|
|
2018-06-20 18:57:50 +03:00
|
|
|
%{ C++
|
|
|
|
namespace mozilla {
|
|
|
|
class OriginAttributes;
|
|
|
|
} // mozilla namespace
|
|
|
|
%}
|
|
|
|
|
|
|
|
[ptr] native OriginAttributesPtr(mozilla::OriginAttributes);
|
|
|
|
|
2001-04-13 06:44:30 +04:00
|
|
|
/**
|
|
|
|
* imgICache interface
|
|
|
|
*
|
|
|
|
* @author Stuart Parmenter <pavlov@netscape.com>
|
2005-03-24 00:09:02 +03:00
|
|
|
* @version 0.1
|
2001-04-13 06:44:30 +04:00
|
|
|
* @see imagelib2
|
|
|
|
*/
|
2015-10-28 23:01:07 +03:00
|
|
|
[scriptable, builtinclass, uuid(bfdf23ff-378e-402e-8a6c-840f0c82b6c3)]
|
2001-04-13 06:44:30 +04: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 10:36:37 +04:00
|
|
|
|
2017-04-11 11:14:09 +03:00
|
|
|
/**
|
|
|
|
* Evict images from the cache.
|
|
|
|
*
|
|
|
|
* @param uri The URI to remove.
|
|
|
|
* @param doc The document to remove the cache entry for.
|
|
|
|
* @throws NS_ERROR_NOT_AVAILABLE if \a uri was unable to be removed from
|
|
|
|
* the cache.
|
|
|
|
*/
|
2018-05-11 20:46:15 +03:00
|
|
|
[noscript] void removeEntry(in nsIURI uri, [optional] in Document doc);
|
2017-04-11 11:14:09 +03:00
|
|
|
|
2018-06-20 18:57:50 +03:00
|
|
|
/**
|
|
|
|
* Evict images from the cache with the same origin and the same
|
|
|
|
* originAttributes of the passed principal.
|
|
|
|
*
|
|
|
|
* @param aPrincipal The principal
|
|
|
|
*/
|
|
|
|
void removeEntriesFromPrincipal(in nsIPrincipal aPrincipal);
|
|
|
|
|
2005-03-24 00:09:02 +03:00
|
|
|
/**
|
|
|
|
* Find Properties
|
|
|
|
* Used to get properties such as 'type' and 'content-disposition'
|
2014-12-06 02:12:08 +03:00
|
|
|
* 'type' is a nsISupportsCString containing the images' mime type such as
|
|
|
|
* 'image/png'
|
2005-03-24 00:09:02 +03:00
|
|
|
* 'content-disposition' will be a nsISupportsCString containing the header
|
2014-12-06 02:12:08 +03:00
|
|
|
* If you call this before any data has been loaded from a URI, it will
|
|
|
|
* succeed, but come back empty.
|
2005-03-24 00:09:02 +03:00
|
|
|
*
|
2012-10-24 22:40:41 +04:00
|
|
|
* Hopefully this will be removed with bug 805119
|
|
|
|
*
|
2005-03-24 00:09:02 +03:00
|
|
|
* @param uri The URI to look up.
|
2015-10-26 23:03:26 +03:00
|
|
|
* @param doc Optional pointer to the document that the cache entry belongs to.
|
2005-03-24 00:09:02 +03:00
|
|
|
* @returns NULL if the URL was not found in the cache
|
|
|
|
*/
|
2016-08-29 08:34:32 +03:00
|
|
|
[must_use]
|
|
|
|
nsIProperties findEntryProperties(in nsIURI uri,
|
2018-05-11 20:46:15 +03:00
|
|
|
[optional] in Document doc);
|
2012-06-26 08:20:12 +04:00
|
|
|
|
|
|
|
/**
|
2014-12-06 02:12:08 +03: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 08:20:12 +04:00
|
|
|
*/
|
|
|
|
void respectPrivacyNotifications();
|
2015-10-28 23:01:07 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the image cache for a document. Controlled documents are responsible
|
|
|
|
* for doing this manually when they get destroyed.
|
|
|
|
*/
|
|
|
|
[noscript, notxpcom]
|
2019-01-02 16:05:23 +03:00
|
|
|
void clearCacheForControlledDocument(in Document doc);
|
2001-04-13 06:44:30 +04:00
|
|
|
};
|