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
84 lines
2.0 KiB
C++
84 lines
2.0 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 IndexedDatabaseInlines_h
|
|
#define IndexedDatabaseInlines_h
|
|
|
|
#ifndef mozilla_dom_indexeddb_indexeddatabase_h__
|
|
#error Must include IndexedDatabase.h first
|
|
#endif
|
|
|
|
#include "FileInfo.h"
|
|
#include "mozilla/dom/indexedDB/PBackgroundIDBSharedTypes.h"
|
|
#include "nsIDOMFile.h"
|
|
#include "nsIInputStream.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace indexedDB {
|
|
|
|
inline
|
|
StructuredCloneFile::StructuredCloneFile()
|
|
{
|
|
MOZ_COUNT_CTOR(StructuredCloneFile);
|
|
}
|
|
|
|
inline
|
|
StructuredCloneFile::~StructuredCloneFile()
|
|
{
|
|
MOZ_COUNT_DTOR(StructuredCloneFile);
|
|
}
|
|
|
|
inline
|
|
bool
|
|
StructuredCloneFile::operator==(const StructuredCloneFile& aOther) const
|
|
{
|
|
return this->mFile == aOther.mFile &&
|
|
this->mFileInfo == aOther.mFileInfo;
|
|
}
|
|
|
|
inline
|
|
StructuredCloneReadInfo::StructuredCloneReadInfo()
|
|
: mDatabase(nullptr)
|
|
{
|
|
MOZ_COUNT_CTOR(StructuredCloneReadInfo);
|
|
}
|
|
|
|
inline
|
|
StructuredCloneReadInfo::StructuredCloneReadInfo(
|
|
SerializedStructuredCloneReadInfo&& aCloneReadInfo)
|
|
: mData(Move(aCloneReadInfo.data()))
|
|
, mDatabase(nullptr)
|
|
{
|
|
MOZ_COUNT_CTOR(StructuredCloneReadInfo);
|
|
}
|
|
|
|
inline
|
|
StructuredCloneReadInfo::~StructuredCloneReadInfo()
|
|
{
|
|
MOZ_COUNT_DTOR(StructuredCloneReadInfo);
|
|
}
|
|
|
|
inline StructuredCloneReadInfo&
|
|
StructuredCloneReadInfo::operator=(StructuredCloneReadInfo&& aCloneReadInfo)
|
|
{
|
|
MOZ_ASSERT(&aCloneReadInfo != this);
|
|
|
|
mData = Move(aCloneReadInfo.mData);
|
|
mCloneBuffer = Move(aCloneReadInfo.mCloneBuffer);
|
|
mFiles.Clear();
|
|
mFiles.SwapElements(aCloneReadInfo.mFiles);
|
|
mDatabase = aCloneReadInfo.mDatabase;
|
|
aCloneReadInfo.mDatabase = nullptr;
|
|
return *this;
|
|
}
|
|
|
|
} // namespace indexedDB
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // IndexedDatabaseInlines_h
|