mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
88 lines
2.8 KiB
Plaintext
88 lines
2.8 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
interface nsIApplicationCache;
|
|
interface nsIFile;
|
|
|
|
/**
|
|
* The application cache service manages the set of application cache
|
|
* groups.
|
|
*/
|
|
[scriptable, uuid(28adfdc7-6718-4b3e-bdb2-ecfefa3c8910)]
|
|
interface nsIApplicationCacheService : nsISupports
|
|
{
|
|
/**
|
|
* Create a new, empty application cache for the given cache
|
|
* group.
|
|
*/
|
|
nsIApplicationCache createApplicationCache(in ACString group);
|
|
|
|
/**
|
|
* Create a new, empty application cache for the given cache
|
|
* group residing in a custom directory with a custom quota.
|
|
*
|
|
* @param group
|
|
* URL of the manifest
|
|
* @param directory
|
|
* Actually a reference to a profile directory where to
|
|
* create the OfflineCache sub-dir.
|
|
* @param quota
|
|
* Optional override of the default quota.
|
|
*/
|
|
nsIApplicationCache createCustomApplicationCache(in ACString group,
|
|
in nsIFile profileDir,
|
|
in int32_t quota);
|
|
|
|
/**
|
|
* Get an application cache object for the given client ID.
|
|
*/
|
|
nsIApplicationCache getApplicationCache(in ACString clientID);
|
|
|
|
/**
|
|
* Get the currently active cache object for a cache group.
|
|
*/
|
|
nsIApplicationCache getActiveCache(in ACString group);
|
|
|
|
/**
|
|
* Deactivate the currently-active cache object for a cache group.
|
|
*/
|
|
void deactivateGroup(in ACString group);
|
|
|
|
/**
|
|
* Try to find the best application cache to serve a resource.
|
|
*/
|
|
nsIApplicationCache chooseApplicationCache(in ACString key);
|
|
|
|
/**
|
|
* Flags the key as being opportunistically cached.
|
|
*
|
|
* This method should also propagate the entry to other
|
|
* application caches with the same opportunistic namespace, but
|
|
* this is not currently implemented.
|
|
*
|
|
* @param cache
|
|
* The cache in which the entry is cached now.
|
|
* @param key
|
|
* The cache entry key.
|
|
*/
|
|
void cacheOpportunistically(in nsIApplicationCache cache, in ACString key);
|
|
|
|
/**
|
|
* Get the list of application cache groups.
|
|
*/
|
|
void getGroups([optional] out unsigned long count,
|
|
[array, size_is(count), retval] out string groupIDs);
|
|
|
|
/**
|
|
* Get the list of application cache groups in the order of
|
|
* activating time.
|
|
*/
|
|
void getGroupsTimeOrdered([optional] out unsigned long count,
|
|
[array, size_is(count), retval] out string groupIDs);
|
|
};
|