Bug 1572460 - Refactor `selection` out of the `InspectorFront`. r=yulia
[gecko.git] / dom / indexedDB / PBackgroundIDBDatabaseRequest.ipdl
blobc3b342048a16398259a6beb49f7549e187aefb63
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 PBackgroundIDBDatabase;
6 include protocol PBackgroundMutableFile;
8 namespace mozilla {
9 namespace dom {
10 namespace indexedDB {
12 struct CreateFileRequestResponse
14   PBackgroundMutableFile mutableFile;
17 union DatabaseRequestResponse
19   nsresult;
20   CreateFileRequestResponse;
23 protocol PBackgroundIDBDatabaseRequest
25   manager PBackgroundIDBDatabase;
27 child:
28   async __delete__(DatabaseRequestResponse response);
31 } // namespace indexedDB
32 } // namespace dom
33 } // namespace mozilla