Bug 1936278 - Prevent search mode chiclet from being dismissed when clicking in page...
[gecko.git] / dom / indexedDB / PBackgroundIndexedDBUtils.ipdl
blobfbc51dea65eb9933056ddc3be49a802a72f14b9b
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   async DoMaintenance()
33     returns (nsresult rv);
35 child:
36   async __delete__();
39 } // namespace indexedDB
40 } // namespace dom
41 } // namespace mozilla