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
79 lines
1.8 KiB
C++
79 lines
1.8 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_indexeddb_indexeddatabase_h__
|
|
#define mozilla_dom_indexeddb_indexeddatabase_h__
|
|
|
|
#include "nsIProgrammingLanguage.h"
|
|
|
|
#include "js/StructuredClone.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsTArray.h"
|
|
|
|
class nsIDOMBlob;
|
|
class nsIInputStream;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace indexedDB {
|
|
|
|
class FileInfo;
|
|
class IDBDatabase;
|
|
class IDBTransaction;
|
|
class SerializedStructuredCloneReadInfo;
|
|
class SerializedStructuredCloneWriteInfo;
|
|
|
|
struct StructuredCloneFile
|
|
{
|
|
nsCOMPtr<nsIDOMBlob> mFile;
|
|
nsRefPtr<FileInfo> mFileInfo;
|
|
|
|
// In IndexedDatabaseInlines.h
|
|
inline
|
|
StructuredCloneFile();
|
|
|
|
// In IndexedDatabaseInlines.h
|
|
inline
|
|
~StructuredCloneFile();
|
|
|
|
// In IndexedDatabaseInlines.h
|
|
inline bool
|
|
operator==(const StructuredCloneFile& aOther) const;
|
|
};
|
|
|
|
struct StructuredCloneReadInfo
|
|
{
|
|
nsTArray<uint8_t> mData;
|
|
nsTArray<StructuredCloneFile> mFiles;
|
|
IDBDatabase* mDatabase;
|
|
|
|
// XXX Remove!
|
|
JSAutoStructuredCloneBuffer mCloneBuffer;
|
|
|
|
// In IndexedDatabaseInlines.h
|
|
inline
|
|
StructuredCloneReadInfo();
|
|
|
|
// In IndexedDatabaseInlines.h
|
|
inline
|
|
~StructuredCloneReadInfo();
|
|
|
|
// In IndexedDatabaseInlines.h
|
|
inline StructuredCloneReadInfo&
|
|
operator=(StructuredCloneReadInfo&& aOther);
|
|
|
|
// In IndexedDatabaseInlines.h
|
|
inline
|
|
StructuredCloneReadInfo(SerializedStructuredCloneReadInfo&& aOther);
|
|
};
|
|
|
|
} // namespace indexedDB
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_indexeddb_indexeddatabase_h__
|