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.
1 /* vim: set ts=2 sts=2 et sw=2: */
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 /**
7 * nsINetworkSeerVerifier - used for testing the network seer to ensure it
8 * does what we expect it to do.
9 */
11 #include "nsISupports.idl"
13 interface nsIURI;
15 [scriptable, uuid(ea273653-43a8-4632-8b30-4032e0918e8b)]
16 interface nsINetworkSeerVerifier : nsISupports
17 {
18 /**
19 * Callback for when we do a predictive preconnect
20 *
21 * @param uri - The URI that was preconnected to
22 */
23 void onPredictPreconnect(in nsIURI uri);
25 /**
26 * Callback for when we do a predictive DNS lookup
27 *
28 * @param uri - The URI that was looked up
29 */
30 void onPredictDNS(in nsIURI uri);
31 };