/usr/include/firefox/nsILoginMetaInfo.h is in firefox-dev 11.0+build1-0ubuntu4.
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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/firefox-11.0+build1/build-tree/mozilla/toolkit/components/passwordmgr/nsILoginMetaInfo.idl
*/
#ifndef __gen_nsILoginMetaInfo_h__
#define __gen_nsILoginMetaInfo_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
/* starting interface: nsILoginMetaInfo */
#define NS_ILOGINMETAINFO_IID_STR "20d8eb40-c494-497f-b2a6-aaa32f807ebd"
#define NS_ILOGINMETAINFO_IID \
{0x20d8eb40, 0xc494, 0x497f, \
{ 0xb2, 0xa6, 0xaa, 0xa3, 0x2f, 0x80, 0x7e, 0xbd }}
class NS_NO_VTABLE NS_SCRIPTABLE nsILoginMetaInfo : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ILOGINMETAINFO_IID)
/* attribute AString guid; */
NS_SCRIPTABLE NS_IMETHOD GetGuid(nsAString & aGuid) = 0;
NS_SCRIPTABLE NS_IMETHOD SetGuid(const nsAString & aGuid) = 0;
/* attribute unsigned long long timeCreated; */
NS_SCRIPTABLE NS_IMETHOD GetTimeCreated(PRUint64 *aTimeCreated) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTimeCreated(PRUint64 aTimeCreated) = 0;
/* attribute unsigned long long timeLastUsed; */
NS_SCRIPTABLE NS_IMETHOD GetTimeLastUsed(PRUint64 *aTimeLastUsed) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTimeLastUsed(PRUint64 aTimeLastUsed) = 0;
/* attribute unsigned long long timePasswordChanged; */
NS_SCRIPTABLE NS_IMETHOD GetTimePasswordChanged(PRUint64 *aTimePasswordChanged) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTimePasswordChanged(PRUint64 aTimePasswordChanged) = 0;
/* attribute unsigned long timesUsed; */
NS_SCRIPTABLE NS_IMETHOD GetTimesUsed(PRUint32 *aTimesUsed) = 0;
NS_SCRIPTABLE NS_IMETHOD SetTimesUsed(PRUint32 aTimesUsed) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsILoginMetaInfo, NS_ILOGINMETAINFO_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSILOGINMETAINFO \
NS_SCRIPTABLE NS_IMETHOD GetGuid(nsAString & aGuid); \
NS_SCRIPTABLE NS_IMETHOD SetGuid(const nsAString & aGuid); \
NS_SCRIPTABLE NS_IMETHOD GetTimeCreated(PRUint64 *aTimeCreated); \
NS_SCRIPTABLE NS_IMETHOD SetTimeCreated(PRUint64 aTimeCreated); \
NS_SCRIPTABLE NS_IMETHOD GetTimeLastUsed(PRUint64 *aTimeLastUsed); \
NS_SCRIPTABLE NS_IMETHOD SetTimeLastUsed(PRUint64 aTimeLastUsed); \
NS_SCRIPTABLE NS_IMETHOD GetTimePasswordChanged(PRUint64 *aTimePasswordChanged); \
NS_SCRIPTABLE NS_IMETHOD SetTimePasswordChanged(PRUint64 aTimePasswordChanged); \
NS_SCRIPTABLE NS_IMETHOD GetTimesUsed(PRUint32 *aTimesUsed); \
NS_SCRIPTABLE NS_IMETHOD SetTimesUsed(PRUint32 aTimesUsed);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSILOGINMETAINFO(_to) \
NS_SCRIPTABLE NS_IMETHOD GetGuid(nsAString & aGuid) { return _to GetGuid(aGuid); } \
NS_SCRIPTABLE NS_IMETHOD SetGuid(const nsAString & aGuid) { return _to SetGuid(aGuid); } \
NS_SCRIPTABLE NS_IMETHOD GetTimeCreated(PRUint64 *aTimeCreated) { return _to GetTimeCreated(aTimeCreated); } \
NS_SCRIPTABLE NS_IMETHOD SetTimeCreated(PRUint64 aTimeCreated) { return _to SetTimeCreated(aTimeCreated); } \
NS_SCRIPTABLE NS_IMETHOD GetTimeLastUsed(PRUint64 *aTimeLastUsed) { return _to GetTimeLastUsed(aTimeLastUsed); } \
NS_SCRIPTABLE NS_IMETHOD SetTimeLastUsed(PRUint64 aTimeLastUsed) { return _to SetTimeLastUsed(aTimeLastUsed); } \
NS_SCRIPTABLE NS_IMETHOD GetTimePasswordChanged(PRUint64 *aTimePasswordChanged) { return _to GetTimePasswordChanged(aTimePasswordChanged); } \
NS_SCRIPTABLE NS_IMETHOD SetTimePasswordChanged(PRUint64 aTimePasswordChanged) { return _to SetTimePasswordChanged(aTimePasswordChanged); } \
NS_SCRIPTABLE NS_IMETHOD GetTimesUsed(PRUint32 *aTimesUsed) { return _to GetTimesUsed(aTimesUsed); } \
NS_SCRIPTABLE NS_IMETHOD SetTimesUsed(PRUint32 aTimesUsed) { return _to SetTimesUsed(aTimesUsed); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSILOGINMETAINFO(_to) \
NS_SCRIPTABLE NS_IMETHOD GetGuid(nsAString & aGuid) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGuid(aGuid); } \
NS_SCRIPTABLE NS_IMETHOD SetGuid(const nsAString & aGuid) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetGuid(aGuid); } \
NS_SCRIPTABLE NS_IMETHOD GetTimeCreated(PRUint64 *aTimeCreated) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTimeCreated(aTimeCreated); } \
NS_SCRIPTABLE NS_IMETHOD SetTimeCreated(PRUint64 aTimeCreated) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTimeCreated(aTimeCreated); } \
NS_SCRIPTABLE NS_IMETHOD GetTimeLastUsed(PRUint64 *aTimeLastUsed) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTimeLastUsed(aTimeLastUsed); } \
NS_SCRIPTABLE NS_IMETHOD SetTimeLastUsed(PRUint64 aTimeLastUsed) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTimeLastUsed(aTimeLastUsed); } \
NS_SCRIPTABLE NS_IMETHOD GetTimePasswordChanged(PRUint64 *aTimePasswordChanged) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTimePasswordChanged(aTimePasswordChanged); } \
NS_SCRIPTABLE NS_IMETHOD SetTimePasswordChanged(PRUint64 aTimePasswordChanged) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTimePasswordChanged(aTimePasswordChanged); } \
NS_SCRIPTABLE NS_IMETHOD GetTimesUsed(PRUint32 *aTimesUsed) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTimesUsed(aTimesUsed); } \
NS_SCRIPTABLE NS_IMETHOD SetTimesUsed(PRUint32 aTimesUsed) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTimesUsed(aTimesUsed); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsLoginMetaInfo : public nsILoginMetaInfo
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSILOGINMETAINFO
nsLoginMetaInfo();
private:
~nsLoginMetaInfo();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsLoginMetaInfo, nsILoginMetaInfo)
nsLoginMetaInfo::nsLoginMetaInfo()
{
/* member initializers and constructor code */
}
nsLoginMetaInfo::~nsLoginMetaInfo()
{
/* destructor code */
}
/* attribute AString guid; */
NS_IMETHODIMP nsLoginMetaInfo::GetGuid(nsAString & aGuid)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsLoginMetaInfo::SetGuid(const nsAString & aGuid)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long long timeCreated; */
NS_IMETHODIMP nsLoginMetaInfo::GetTimeCreated(PRUint64 *aTimeCreated)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsLoginMetaInfo::SetTimeCreated(PRUint64 aTimeCreated)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long long timeLastUsed; */
NS_IMETHODIMP nsLoginMetaInfo::GetTimeLastUsed(PRUint64 *aTimeLastUsed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsLoginMetaInfo::SetTimeLastUsed(PRUint64 aTimeLastUsed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long long timePasswordChanged; */
NS_IMETHODIMP nsLoginMetaInfo::GetTimePasswordChanged(PRUint64 *aTimePasswordChanged)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsLoginMetaInfo::SetTimePasswordChanged(PRUint64 aTimePasswordChanged)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long timesUsed; */
NS_IMETHODIMP nsLoginMetaInfo::GetTimesUsed(PRUint32 *aTimesUsed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsLoginMetaInfo::SetTimesUsed(PRUint32 aTimesUsed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsILoginMetaInfo_h__ */
|