2016-05-27 21:54:31 +00: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-16 04:02:32 +00: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_ipc_InputStreamUtils_h
|
|
|
|
#define mozilla_ipc_InputStreamUtils_h
|
|
|
|
|
2012-08-23 19:33:46 +00:00
|
|
|
#include "mozilla/ipc/InputStreamParams.h"
|
2012-08-16 04:02:32 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIInputStream.h"
|
2014-03-25 18:37:13 +00:00
|
|
|
#include "nsTArray.h"
|
2012-08-16 04:02:32 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2014-03-25 18:37:13 +00:00
|
|
|
class FileDescriptor;
|
|
|
|
|
2012-08-23 02:13:54 +00:00
|
|
|
void
|
|
|
|
SerializeInputStream(nsIInputStream* aInputStream,
|
2014-03-25 18:37:13 +00:00
|
|
|
InputStreamParams& aParams,
|
|
|
|
nsTArray<FileDescriptor>& aFileDescriptors);
|
2012-08-23 02:13:54 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
SerializeInputStream(nsIInputStream* aInputStream,
|
2014-03-25 18:37:13 +00:00
|
|
|
OptionalInputStreamParams& aParams,
|
|
|
|
nsTArray<FileDescriptor>& aFileDescriptors);
|
2012-08-23 02:13:54 +00:00
|
|
|
|
2012-08-16 04:02:32 +00:00
|
|
|
already_AddRefed<nsIInputStream>
|
2014-03-25 18:37:13 +00:00
|
|
|
DeserializeInputStream(const InputStreamParams& aParams,
|
|
|
|
const nsTArray<FileDescriptor>& aFileDescriptors);
|
2012-08-16 04:02:32 +00:00
|
|
|
|
2012-08-23 02:13:54 +00:00
|
|
|
already_AddRefed<nsIInputStream>
|
2014-03-25 18:37:13 +00:00
|
|
|
DeserializeInputStream(const OptionalInputStreamParams& aParams,
|
|
|
|
const nsTArray<FileDescriptor>& aFileDescriptors);
|
2012-08-23 02:13:54 +00:00
|
|
|
|
2012-08-16 04:02:32 +00:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_ipc_InputStreamUtils_h
|