gecko/netwerk/base/public/nsINetworkPredictorVerifier.idl
Jeremy Poulin 4c8dd6d4b2 Bug 1016622: Renaming mozilla::network::Seer to mozilla::network Predictor. r=hurley
--HG--
rename : netwerk/base/public/nsINetworkSeer.idl => netwerk/base/public/nsINetworkPredictor.idl
rename : netwerk/base/public/nsINetworkSeerVerifier.idl => netwerk/base/public/nsINetworkPredictorVerifier.idl
rename : netwerk/base/src/Seer.cpp => netwerk/base/src/Predictor.cpp
rename : netwerk/base/src/Seer.h => netwerk/base/src/Predictor.h
rename : netwerk/test/unit/test_seer.js => netwerk/test/unit/test_predictor.js
2014-06-03 13:37:46 -07:00

32 lines
899 B
Plaintext

/* 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/. */
/**
* nsINetworkPredictorVerifier - used for testing the network predictor to
* ensure it does what we expect it to do.
*/
#include "nsISupports.idl"
interface nsIURI;
[scriptable, uuid(00360c7d-a046-4f8d-a1fc-8bdc0f0fb444)]
interface nsINetworkPredictorVerifier : 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);
};