|
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 }; |