Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* vim:set ts=2 sw=2 sts=2 et cindent: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #include "nsISupports.idl" |
michael@0 | 8 | |
michael@0 | 9 | interface nsIChannel; |
michael@0 | 10 | interface nsIProxyInfo; |
michael@0 | 11 | interface nsICancelable; |
michael@0 | 12 | |
michael@0 | 13 | /** |
michael@0 | 14 | * This interface serves as a closure for nsIProtocolProxyService's |
michael@0 | 15 | * asyncResolve method. |
michael@0 | 16 | */ |
michael@0 | 17 | [scriptable, uuid(fbb6eff6-0cc2-4d99-8d6f-0a12b462bdeb)] |
michael@0 | 18 | interface nsIProtocolProxyCallback : nsISupports |
michael@0 | 19 | { |
michael@0 | 20 | /** |
michael@0 | 21 | * This method is called when proxy info is available or when an error |
michael@0 | 22 | * in the proxy resolution occurs. |
michael@0 | 23 | * |
michael@0 | 24 | * @param aRequest |
michael@0 | 25 | * The value returned from asyncResolve. |
michael@0 | 26 | * @param aChannel |
michael@0 | 27 | * The channel passed to asyncResolve. |
michael@0 | 28 | * @param aProxyInfo |
michael@0 | 29 | * The resulting proxy info or null if there is no associated proxy |
michael@0 | 30 | * info for aURI. As with the result of nsIProtocolProxyService's |
michael@0 | 31 | * resolve method, a null result implies that a direct connection |
michael@0 | 32 | * should be used. |
michael@0 | 33 | * @param aStatus |
michael@0 | 34 | * The status of the callback. This is a failure code if the request |
michael@0 | 35 | * could not be satisfied, in which case the value of aStatus |
michael@0 | 36 | * indicates the reason for the failure and aProxyInfo will be null. |
michael@0 | 37 | */ |
michael@0 | 38 | void onProxyAvailable(in nsICancelable aRequest, |
michael@0 | 39 | in nsIChannel aChannel, |
michael@0 | 40 | in nsIProxyInfo aProxyInfo, |
michael@0 | 41 | in nsresult aStatus); |
michael@0 | 42 | }; |