2012-08-01 23:02:29 -07: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/. */
|
|
|
|
|
|
|
|
include protocol PBlob;
|
2014-03-25 11:37:13 -07:00
|
|
|
include protocol PFileDescriptorSet;
|
2012-08-23 12:33:46 -07:00
|
|
|
include InputStreamParams;
|
2012-08-01 23:02:29 -07:00
|
|
|
|
2014-03-25 11:37:13 -07:00
|
|
|
using mozilla::void_t from "ipc/IPCMessageUtils.h";
|
|
|
|
|
2012-08-01 23:02:29 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
protocol PBlobStream
|
|
|
|
{
|
|
|
|
manager PBlob;
|
|
|
|
|
|
|
|
both:
|
2014-03-25 11:37:13 -07:00
|
|
|
__delete__(InputStreamParams params, OptionalFileDescriptorSet fds);
|
2012-08-01 23:02:29 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|