netwerk/base/public/nsINetworkSeerVerifier.idl

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:10bcaa2eb4d8
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/. */
5
6 /**
7 * nsINetworkSeerVerifier - used for testing the network seer to ensure it
8 * does what we expect it to do.
9 */
10
11 #include "nsISupports.idl"
12
13 interface nsIURI;
14
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);
24
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 };

mercurial