diff -r 000000000000 -r 6474c204b198 netwerk/base/public/nsINetworkSeerVerifier.idl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/netwerk/base/public/nsINetworkSeerVerifier.idl Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,31 @@ +/* vim: set ts=2 sts=2 et sw=2: */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/** + * nsINetworkSeerVerifier - used for testing the network seer to ensure it + * does what we expect it to do. + */ + +#include "nsISupports.idl" + +interface nsIURI; + +[scriptable, uuid(ea273653-43a8-4632-8b30-4032e0918e8b)] +interface nsINetworkSeerVerifier : nsISupports +{ + /** + * Callback for when we do a predictive preconnect + * + * @param uri - The URI that was preconnected to + */ + void onPredictPreconnect(in nsIURI uri); + + /** + * Callback for when we do a predictive DNS lookup + * + * @param uri - The URI that was looked up + */ + void onPredictDNS(in nsIURI uri); +};