Bug 1816170 - Disable perftest-on-autoland cron. r=aglavic
[gecko.git] / dom / indexedDB / PBackgroundIndexedDBUtils.ipdl
blob70214a483fd0a6230694636b07df91bdbbdf910f
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3  * You can obtain one at http://mozilla.org/MPL/2.0/. */
5 include protocol PBackground;
7 include "mozilla/dom/quota/SerializationHelpers.h";
8 include "mozilla/dom/indexedDB/ActorsChild.h";
10 using mozilla::dom::quota::PersistenceType
11   from "mozilla/dom/quota/PersistenceType.h";
13 namespace mozilla {
14 namespace dom {
15 namespace indexedDB {
17 [ManualDealloc, ChildImpl="indexedDB::BackgroundUtilsChild", ParentImpl=virtual]
18 sync protocol PBackgroundIndexedDBUtils
20   manager PBackground;
22 parent:
23   async DeleteMe();
25   // Use only for testing!
26   sync GetFileReferences(PersistenceType persistenceType,
27                          nsCString origin,
28                          nsString databaseName,
29                          int64_t fileId)
30     returns (int32_t refCnt, int32_t dBRefCnt, bool result);
32 child:
33   async __delete__();
36 } // namespace indexedDB
37 } // namespace dom
38 } // namespace mozilla