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