Bug 1816170 - Disable perftest-on-autoland cron. r=aglavic
[gecko.git] / dom / indexedDB / PBackgroundIDBVersionChangeTransaction.ipdl
blobe139f0f1c39aac90163364e03d0a3d26cb4972d5
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 PBackgroundIDBCursor;
6 include protocol PBackgroundIDBDatabase;
7 include protocol PBackgroundIDBDatabaseFile;
8 include protocol PBackgroundIDBRequest;
10 include PBackgroundIDBSharedTypes;
12 include "mozilla/dom/indexedDB/ActorsChild.h";
14 namespace mozilla {
15 namespace dom {
16 namespace indexedDB {
18 [ChildImpl="indexedDB::BackgroundVersionChangeTransactionChild", ParentImpl=virtual]
19 protocol PBackgroundIDBVersionChangeTransaction {
20   manager PBackgroundIDBDatabase;
22   manages PBackgroundIDBCursor;
23   manages PBackgroundIDBRequest;
25 parent:
26   async DeleteMe();
28   async Commit(int64_t? lastRequest);
29   async Abort(nsresult resultCode);
31   async CreateObjectStore(ObjectStoreMetadata metadata);
32   async DeleteObjectStore(int64_t objectStoreId);
33   async RenameObjectStore(int64_t objectStoreId, nsString name);
35   async CreateIndex(int64_t objectStoreId, IndexMetadata metadata);
36   async DeleteIndex(int64_t objectStoreId, int64_t indexId);
37   async RenameIndex(int64_t objectStoreId, int64_t indexId, nsString name);
39   async PBackgroundIDBCursor(OpenCursorParams params);
41   async PBackgroundIDBRequest(RequestParams params);
43 child:
44   async __delete__();
46   async Complete(nsresult result);
49 }  // namespace indexedDB
50 }  // namespace dom
51 }  // namespace mozilla