mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
879 B
Plaintext
32 lines
879 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/. */
|
|
|
|
/**
|
|
* 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);
|
|
};
|