PCacheStreamControl.ipdl 573 B

1234567891011121314151617181920212223242526272829
  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 PBackground;
  5. using struct nsID from "nsID.h";
  6. namespace mozilla {
  7. namespace dom {
  8. namespace cache {
  9. protocol PCacheStreamControl
  10. {
  11. manager PBackground;
  12. parent:
  13. async NoteClosed(nsID aStreamId);
  14. child:
  15. async Close(nsID aStreamId);
  16. async CloseAll();
  17. async __delete__();
  18. };
  19. } // namespace cache
  20. } // namespace dom
  21. } // namespace mozilla