nsIRedirectHistoryEntry.idl (902B)
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 6 #include "nsISupports.idl" 7 8 interface nsIPrincipal; 9 interface nsIURI; 10 11 /** 12 * This nsIRedirectHistoryEntry defines an interface for specifying channel 13 * redirect information 14 */ 15 16 [scriptable, uuid(133b2905-0eba-411c-a8bb-f59787142aa2)] 17 interface nsIRedirectHistoryEntry : nsISupports 18 { 19 /** 20 * The principal of this redirect entry 21 */ 22 readonly attribute nsIPrincipal principal; 23 24 /** 25 * The referring URI of this redirect entry. This may be null. 26 */ 27 readonly attribute nsIURI referrerURI; 28 29 /** 30 * The remote address of this redirect entry. 31 */ 32 readonly attribute ACString remoteAddress; 33 34 };