nsISecCheckWrapChannel.idl 698 B

12345678910111213141516171819202122232425
  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 nsIChannel;
  6. /**
  7. * nsISecCheckWrapChannel
  8. * Describes an XPCOM component used to wrap channels for performing
  9. * security checks. Channels wrapped inside this class can use
  10. * this interface to query the wrapped inner channel.
  11. */
  12. [scriptable, uuid(9446c5d5-c9fb-4a6e-acf9-ca4fc666efe0)]
  13. interface nsISecCheckWrapChannel : nsISupports
  14. {
  15. /**
  16. * Returns the wrapped channel inside this class.
  17. */
  18. readonly attribute nsIChannel innerChannel;
  19. };