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 "nsIProtocolProxyService.idl" |
michael@0 | 8 | |
michael@0 | 9 | /** |
michael@0 | 10 | * An extension of nsIProtocolProxyService |
michael@0 | 11 | */ |
michael@0 | 12 | [scriptable, uuid(b2e5b2c0-e21e-4845-b336-be6d60a38951)] |
michael@0 | 13 | interface nsIProtocolProxyService2 : nsIProtocolProxyService |
michael@0 | 14 | { |
michael@0 | 15 | /** |
michael@0 | 16 | * Call this method to cause the PAC file (if any is configured) to be |
michael@0 | 17 | * reloaded. The PAC file is loaded asynchronously. |
michael@0 | 18 | */ |
michael@0 | 19 | void reloadPAC(); |
michael@0 | 20 | |
michael@0 | 21 | /** |
michael@0 | 22 | * This method is identical to asyncResolve() except it may execute the |
michael@0 | 23 | * callback function immediately (i.e from the stack of asyncResolve2()) if |
michael@0 | 24 | * it is immediately ready to run. The nsICancelable return value will be |
michael@0 | 25 | * null in that case. |
michael@0 | 26 | */ |
michael@0 | 27 | nsICancelable asyncResolve2(in nsIChannel aChannel, in unsigned long aFlags, |
michael@0 | 28 | in nsIProtocolProxyCallback aCallback); |
michael@0 | 29 | }; |