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/. */
|
|
|
|
|
|
|
|
include protocol PBlob;
|
2012-08-23 23:33:46 +04:00
|
|
|
include InputStreamParams;
|
2012-08-02 10:02:29 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
protocol PBlobStream
|
|
|
|
{
|
|
|
|
manager PBlob;
|
|
|
|
|
|
|
|
both:
|
2012-08-16 08:02:32 +04:00
|
|
|
__delete__(InputStreamParams params);
|
2012-08-02 10:02:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|