Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "nsISupports.idl" |
michael@0 | 7 | |
michael@0 | 8 | interface nsIChannel; |
michael@0 | 9 | interface nsIHttpChannel; |
michael@0 | 10 | interface nsIURI; |
michael@0 | 11 | |
michael@0 | 12 | /** |
michael@0 | 13 | * nsIHttpEventSink |
michael@0 | 14 | * |
michael@0 | 15 | * Implement this interface to receive control over various HTTP events. The |
michael@0 | 16 | * HTTP channel will try to get this interface from its notificationCallbacks |
michael@0 | 17 | * attribute, and if it doesn't find it there it will look for it from its |
michael@0 | 18 | * loadGroup's notificationCallbacks attribute. |
michael@0 | 19 | * |
michael@0 | 20 | * These methods are called before onStartRequest, and should be handled |
michael@0 | 21 | * SYNCHRONOUSLY. |
michael@0 | 22 | * |
michael@0 | 23 | * @deprecated Newly written code should use nsIChannelEventSink instead of this |
michael@0 | 24 | * interface. |
michael@0 | 25 | */ |
michael@0 | 26 | [scriptable, uuid(9475a6af-6352-4251-90f9-d65b1cd2ea15)] |
michael@0 | 27 | interface nsIHttpEventSink : nsISupports |
michael@0 | 28 | { |
michael@0 | 29 | /** |
michael@0 | 30 | * Called when a redirect occurs due to a HTTP response like 302. The |
michael@0 | 31 | * redirection may be to a non-http channel. |
michael@0 | 32 | * |
michael@0 | 33 | * @return failure cancels redirect |
michael@0 | 34 | */ |
michael@0 | 35 | void onRedirect(in nsIHttpChannel httpChannel, |
michael@0 | 36 | in nsIChannel newChannel); |
michael@0 | 37 | }; |