/usr/include/thunderbird/nsINetworkPredictorVerifier.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsINetworkPredictorVerifier.idl
*/
#ifndef __gen_nsINetworkPredictorVerifier_h__
#define __gen_nsINetworkPredictorVerifier_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIURI; /* forward declaration */
/* starting interface: nsINetworkPredictorVerifier */
#define NS_INETWORKPREDICTORVERIFIER_IID_STR "2e43bb32-dabf-4494-9f90-2b3195b1c73d"
#define NS_INETWORKPREDICTORVERIFIER_IID \
{0x2e43bb32, 0xdabf, 0x4494, \
{ 0x9f, 0x90, 0x2b, 0x31, 0x95, 0xb1, 0xc7, 0x3d }}
class NS_NO_VTABLE nsINetworkPredictorVerifier : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_INETWORKPREDICTORVERIFIER_IID)
/* void onPredictPrefetch (in nsIURI uri, in uint32_t status); */
NS_IMETHOD OnPredictPrefetch(nsIURI *uri, uint32_t status) = 0;
/* void onPredictPreconnect (in nsIURI uri); */
NS_IMETHOD OnPredictPreconnect(nsIURI *uri) = 0;
/* void onPredictDNS (in nsIURI uri); */
NS_IMETHOD OnPredictDNS(nsIURI *uri) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsINetworkPredictorVerifier, NS_INETWORKPREDICTORVERIFIER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSINETWORKPREDICTORVERIFIER \
NS_IMETHOD OnPredictPrefetch(nsIURI *uri, uint32_t status) override; \
NS_IMETHOD OnPredictPreconnect(nsIURI *uri) override; \
NS_IMETHOD OnPredictDNS(nsIURI *uri) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSINETWORKPREDICTORVERIFIER \
NS_METHOD OnPredictPrefetch(nsIURI *uri, uint32_t status); \
NS_METHOD OnPredictPreconnect(nsIURI *uri); \
NS_METHOD OnPredictDNS(nsIURI *uri);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSINETWORKPREDICTORVERIFIER(_to) \
NS_IMETHOD OnPredictPrefetch(nsIURI *uri, uint32_t status) override { return _to OnPredictPrefetch(uri, status); } \
NS_IMETHOD OnPredictPreconnect(nsIURI *uri) override { return _to OnPredictPreconnect(uri); } \
NS_IMETHOD OnPredictDNS(nsIURI *uri) override { return _to OnPredictDNS(uri); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSINETWORKPREDICTORVERIFIER(_to) \
NS_IMETHOD OnPredictPrefetch(nsIURI *uri, uint32_t status) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnPredictPrefetch(uri, status); } \
NS_IMETHOD OnPredictPreconnect(nsIURI *uri) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnPredictPreconnect(uri); } \
NS_IMETHOD OnPredictDNS(nsIURI *uri) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnPredictDNS(uri); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsNetworkPredictorVerifier : public nsINetworkPredictorVerifier
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSINETWORKPREDICTORVERIFIER
nsNetworkPredictorVerifier();
private:
~nsNetworkPredictorVerifier();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsNetworkPredictorVerifier, nsINetworkPredictorVerifier)
nsNetworkPredictorVerifier::nsNetworkPredictorVerifier()
{
/* member initializers and constructor code */
}
nsNetworkPredictorVerifier::~nsNetworkPredictorVerifier()
{
/* destructor code */
}
/* void onPredictPrefetch (in nsIURI uri, in uint32_t status); */
NS_IMETHODIMP nsNetworkPredictorVerifier::OnPredictPrefetch(nsIURI *uri, uint32_t status)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onPredictPreconnect (in nsIURI uri); */
NS_IMETHODIMP nsNetworkPredictorVerifier::OnPredictPreconnect(nsIURI *uri)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onPredictDNS (in nsIURI uri); */
NS_IMETHODIMP nsNetworkPredictorVerifier::OnPredictDNS(nsIURI *uri)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsINetworkPredictorVerifier_h__ */
|