2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-08-02 10:02:29 +04:00
|
|
|
/* 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_StructuredCloneUtils_h
|
|
|
|
#define mozilla_dom_StructuredCloneUtils_h
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsTArray.h"
|
2014-10-08 20:15:23 +04:00
|
|
|
#include "mozilla/dom/File.h"
|
2012-08-02 10:02:29 +04:00
|
|
|
|
2013-08-20 10:43:47 +04:00
|
|
|
#include "js/StructuredClone.h"
|
2013-08-18 02:50:18 +04:00
|
|
|
|
2012-08-02 10:02:29 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
struct
|
|
|
|
StructuredCloneClosure
|
|
|
|
{
|
2015-06-17 13:44:27 +03:00
|
|
|
nsTArray<nsRefPtr<BlobImpl>> mBlobImpls;
|
2012-08-02 10:02:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct
|
|
|
|
StructuredCloneData
|
|
|
|
{
|
|
|
|
StructuredCloneData() : mData(nullptr), mDataLength(0) {}
|
|
|
|
uint64_t* mData;
|
|
|
|
size_t mDataLength;
|
|
|
|
StructuredCloneClosure mClosure;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
2012-10-04 02:19:22 +04:00
|
|
|
ReadStructuredClone(JSContext* aCx, uint64_t* aData, size_t aDataLength,
|
2013-10-23 04:18:32 +04:00
|
|
|
const StructuredCloneClosure& aClosure,
|
|
|
|
JS::MutableHandle<JS::Value> aClone);
|
2012-08-02 10:02:29 +04:00
|
|
|
|
|
|
|
inline bool
|
|
|
|
ReadStructuredClone(JSContext* aCx, const StructuredCloneData& aData,
|
2013-10-23 04:18:32 +04:00
|
|
|
JS::MutableHandle<JS::Value> aClone)
|
2012-08-02 10:02:29 +04:00
|
|
|
{
|
|
|
|
return ReadStructuredClone(aCx, aData.mData, aData.mDataLength,
|
|
|
|
aData.mClosure, aClone);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-23 04:18:32 +04:00
|
|
|
WriteStructuredClone(JSContext* aCx, JS::Handle<JS::Value> aSource,
|
2012-08-02 10:02:29 +04:00
|
|
|
JSAutoStructuredCloneBuffer& aBuffer,
|
|
|
|
StructuredCloneClosure& aClosure);
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_StructuredCloneUtils_h
|