mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b3c31c0c49
--HG-- rename : dom/indexedDB/ipc/SerializationHelpers.h => dom/indexedDB/SerializationHelpers.h rename : dom/indexedDB/ipc/unit/head.js => dom/indexedDB/test/unit/xpcshell-head-child-process.js rename : dom/indexedDB/test/unit/head.js => dom/indexedDB/test/unit/xpcshell-head-parent-process.js rename : dom/ipc/Blob.h => dom/ipc/BlobParent.h rename : dom/ipc/FileDescriptorSetChild.cpp => ipc/glue/FileDescriptorSetChild.cpp rename : dom/ipc/FileDescriptorSetChild.h => ipc/glue/FileDescriptorSetChild.h rename : dom/ipc/FileDescriptorSetParent.cpp => ipc/glue/FileDescriptorSetParent.cpp rename : dom/ipc/FileDescriptorSetParent.h => ipc/glue/FileDescriptorSetParent.h rename : dom/ipc/PFileDescriptorSet.ipdl => ipc/glue/PFileDescriptorSet.ipdl
73 lines
1.7 KiB
Plaintext
73 lines
1.7 KiB
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
include protocol PBackgroundIDBDatabaseFile;
|
|
include protocol PBackgroundIDBFactory;
|
|
include protocol PBackgroundIDBTransaction;
|
|
include protocol PBackgroundIDBVersionChangeTransaction;
|
|
include protocol PBlob;
|
|
|
|
include InputStreamParams;
|
|
include PBackgroundIDBSharedTypes;
|
|
|
|
include "mozilla/dom/indexedDB/SerializationHelpers.h";
|
|
|
|
using struct mozilla::null_t
|
|
from "ipc/IPCMessageUtils.h";
|
|
|
|
using mozilla::dom::indexedDB::IDBTransaction::Mode
|
|
from "mozilla/dom/indexedDB/IDBTransaction.h";
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace indexedDB {
|
|
|
|
union NullableVersion
|
|
{
|
|
null_t;
|
|
uint64_t;
|
|
};
|
|
|
|
union BlobOrInputStream
|
|
{
|
|
PBlob;
|
|
InputStreamParams;
|
|
};
|
|
|
|
protocol PBackgroundIDBDatabase
|
|
{
|
|
manager PBackgroundIDBFactory;
|
|
|
|
manages PBackgroundIDBDatabaseFile;
|
|
manages PBackgroundIDBTransaction;
|
|
manages PBackgroundIDBVersionChangeTransaction;
|
|
|
|
parent:
|
|
DeleteMe();
|
|
|
|
Blocked();
|
|
|
|
Close();
|
|
|
|
PBackgroundIDBDatabaseFile(BlobOrInputStream blobOrInputStream);
|
|
|
|
PBackgroundIDBTransaction(nsString[] objectStoreNames, Mode mode);
|
|
|
|
child:
|
|
__delete__();
|
|
|
|
VersionChange(uint64_t oldVersion, NullableVersion newVersion);
|
|
|
|
Invalidate();
|
|
|
|
PBackgroundIDBVersionChangeTransaction(uint64_t currentVersion,
|
|
uint64_t requestedVersion,
|
|
int64_t nextObjectStoreId,
|
|
int64_t nextIndexId);
|
|
};
|
|
|
|
} // namespace indexedDB
|
|
} // namespace dom
|
|
} // namespace mozilla
|