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
113 lines
2.0 KiB
Plaintext
113 lines
2.0 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 PBackgroundIDBTransaction;
|
|
include protocol PBackgroundIDBVersionChangeTransaction;
|
|
include protocol PBlob;
|
|
|
|
include PBackgroundIDBSharedTypes;
|
|
|
|
include "mozilla/dom/indexedDB/SerializationHelpers.h";
|
|
|
|
using struct mozilla::void_t
|
|
from "ipc/IPCMessageUtils.h";
|
|
|
|
using class mozilla::dom::indexedDB::Key
|
|
from "mozilla/dom/indexedDB/Key.h";
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace indexedDB {
|
|
|
|
struct ObjectStoreAddResponse
|
|
{
|
|
Key key;
|
|
};
|
|
|
|
struct ObjectStorePutResponse
|
|
{
|
|
Key key;
|
|
};
|
|
|
|
struct ObjectStoreGetResponse
|
|
{
|
|
SerializedStructuredCloneReadInfo cloneInfo;
|
|
};
|
|
|
|
struct ObjectStoreGetAllResponse
|
|
{
|
|
SerializedStructuredCloneReadInfo[] cloneInfos;
|
|
};
|
|
|
|
struct ObjectStoreGetAllKeysResponse
|
|
{
|
|
Key[] keys;
|
|
};
|
|
|
|
struct ObjectStoreDeleteResponse
|
|
{ };
|
|
|
|
struct ObjectStoreClearResponse
|
|
{ };
|
|
|
|
struct ObjectStoreCountResponse
|
|
{
|
|
uint64_t count;
|
|
};
|
|
|
|
struct IndexGetResponse
|
|
{
|
|
SerializedStructuredCloneReadInfo cloneInfo;
|
|
};
|
|
|
|
struct IndexGetKeyResponse
|
|
{
|
|
Key key;
|
|
};
|
|
|
|
struct IndexGetAllResponse
|
|
{
|
|
SerializedStructuredCloneReadInfo[] cloneInfos;
|
|
};
|
|
|
|
struct IndexGetAllKeysResponse
|
|
{
|
|
Key[] keys;
|
|
};
|
|
|
|
struct IndexCountResponse
|
|
{
|
|
uint64_t count;
|
|
};
|
|
|
|
union RequestResponse
|
|
{
|
|
nsresult;
|
|
ObjectStoreGetResponse;
|
|
ObjectStoreAddResponse;
|
|
ObjectStorePutResponse;
|
|
ObjectStoreDeleteResponse;
|
|
ObjectStoreClearResponse;
|
|
ObjectStoreCountResponse;
|
|
ObjectStoreGetAllResponse;
|
|
ObjectStoreGetAllKeysResponse;
|
|
IndexGetResponse;
|
|
IndexGetKeyResponse;
|
|
IndexGetAllResponse;
|
|
IndexGetAllKeysResponse;
|
|
IndexCountResponse;
|
|
};
|
|
|
|
protocol PBackgroundIDBRequest
|
|
{
|
|
manager PBackgroundIDBTransaction or PBackgroundIDBVersionChangeTransaction;
|
|
|
|
child:
|
|
__delete__(RequestResponse response);
|
|
};
|
|
|
|
} // namespace indexedDB
|
|
} // namespace dom
|
|
} // namespace mozilla
|