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"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2012-08-23 02:13:54 +00:00
|
|
|
void
|
|
|
|
SerializeInputStream(nsIInputStream* aInputStream,
|
|
|
|
InputStreamParams& aParams);
|
|
|
|
|
|
|
|
void
|
|
|
|
SerializeInputStream(nsIInputStream* aInputStream,
|
|
|
|
OptionalInputStreamParams& aParams);
|
|
|
|
|
2012-08-16 04:02:32 +00:00
|
|
|
already_AddRefed<nsIInputStream>
|
|
|
|
DeserializeInputStream(const InputStreamParams& aParams);
|
|
|
|
|
2012-08-23 02:13:54 +00:00
|
|
|
already_AddRefed<nsIInputStream>
|
|
|
|
DeserializeInputStream(const OptionalInputStreamParams& aParams);
|
|
|
|
|
2012-08-16 04:02:32 +00:00
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_ipc_InputStreamUtils_h
|