PBlobStream.ipdl 522 B

1234567891011121314151617181920212223
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  3. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. include protocol PBlob;
  5. include protocol PFileDescriptorSet;
  6. include BlobTypes;
  7. include InputStreamParams;
  8. namespace mozilla {
  9. namespace dom {
  10. protocol PBlobStream
  11. {
  12. manager PBlob;
  13. child:
  14. async __delete__(InputStreamParams params, OptionalFileDescriptorSet fds);
  15. };
  16. } // namespace dom
  17. } // namespace mozilla