summaryrefslogtreecommitdiffstats
path: root/netwerk/cache2/nsICacheStorageVisitor.idl
blob: 138de2c9846a71c11bb918bc8cc951f9faec9a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* 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 nsIURI;
interface nsIFile;
interface nsILoadContextInfo;

[scriptable, uuid(6cc7c253-93b6-482b-8e9d-1e04d8e9d655)]
interface nsICacheStorageVisitor : nsISupports
{
  /**
   */
  void onCacheStorageInfo(in uint32_t aEntryCount,
                          in uint64_t aConsumption,
                          in uint64_t aCapacity,
                          in nsIFile aDiskDirectory);

  /**
   */
  void onCacheEntryInfo(in nsIURI aURI,
                        in ACString aIdEnhance,
                        in int64_t aDataSize,
                        in int64_t aAltDataSize,
                        in uint32_t aFetchCount,
                        in uint32_t aLastModifiedTime,
                        in uint32_t aExpirationTime,
                        in boolean aPinned,
                        in nsILoadContextInfo aInfo);

  /**
   */
  void onCacheEntryVisitCompleted();
};