Bug 1875768 - Call the appropriate postfork handler on MacOS r=glandium
[gecko.git] / netwerk / base / nsIRedirectHistoryEntry.idl
blob50086574f8b4b830dcdb13763d57093c52d2d3f8
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/. */
6 #include "nsISupports.idl"
8 interface nsIPrincipal;
9 interface nsIURI;
11 /**
12 * This nsIRedirectHistoryEntry defines an interface for specifying channel
13 * redirect information
16 [scriptable, uuid(133b2905-0eba-411c-a8bb-f59787142aa2)]
17 interface nsIRedirectHistoryEntry : nsISupports
19 /**
20 * The principal of this redirect entry
22 readonly attribute nsIPrincipal principal;
24 /**
25 * The referring URI of this redirect entry. This may be null.
27 readonly attribute nsIURI referrerURI;
29 /**
30 * The remote address of this redirect entry.
32 readonly attribute ACString remoteAddress;