Bug 1265584 [wpt PR 11167] - [Gecko Bug 1265584] Move wptrunner marionette usage...
[gecko.git] / dom / filehandle / PBackgroundMutableFile.ipdl
blob0f87f3b6d5d37b68fd5ab1d2ef310effcb8e4d99
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 PBackgroundFileHandle;
6 include protocol PBackgroundIDBDatabase;
8 include "mozilla/dom/filehandle/SerializationHelpers.h";
10 using mozilla::dom::FileMode
11   from "mozilla/dom/FileModeBinding.h";
13 namespace mozilla {
14 namespace dom {
16 sync protocol PBackgroundMutableFile
18   manager PBackgroundIDBDatabase;
20   manages PBackgroundFileHandle;
22 parent:
23   async DeleteMe();
25   async PBackgroundFileHandle(FileMode mode);
27   // Use only for testing!
28   sync GetFileId()
29     returns (int64_t fileId);
31 child:
32   async __delete__();
35 } // namespace dom
36 } // namespace mozilla