nsIURIWithBlobImpl.idl 605 B

123456789101112131415161718192021
  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
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include "nsISupports.idl"
  5. interface nsIURI;
  6. /**
  7. * nsIURIWithBlobImpl is implemented by URIs which are associated with a
  8. * specific BlobImpl.
  9. */
  10. [builtinclass, uuid(331b41d3-3506-4ab5-bef9-aab41e3202a3)]
  11. interface nsIURIWithBlobImpl : nsISupports
  12. {
  13. /**
  14. * The BlobImpl associated with the resource returned when loading this uri.
  15. */
  16. readonly attribute nsISupports blobImpl;
  17. };