|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/netwerk/cookie/nsICookie2.idl
*/
#ifndef __gen_nsICookie2_h__
#define __gen_nsICookie2_h__
#ifndef __gen_nsICookie_h__
#include "nsICookie.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: nsICookie2 */
#define NS_ICOOKIE2_IID_STR "05c420e5-03d0-4c7b-a605-df7ebe5ca326"
#define NS_ICOOKIE2_IID \
{0x05c420e5, 0x03d0, 0x4c7b, \
{ 0xa6, 0x05, 0xdf, 0x7e, 0xbe, 0x5c, 0xa3, 0x26 }}
class NS_NO_VTABLE nsICookie2 : public nsICookie {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICOOKIE2_IID)
/* readonly attribute AUTF8String rawHost; */
NS_IMETHOD GetRawHost(nsACString & aRawHost) = 0;
/* readonly attribute boolean isSession; */
NS_IMETHOD GetIsSession(bool *aIsSession) = 0;
/* readonly attribute int64_t expiry; */
NS_IMETHOD GetExpiry(int64_t *aExpiry) = 0;
/* readonly attribute boolean isHttpOnly; */
NS_IMETHOD GetIsHttpOnly(bool *aIsHttpOnly) = 0;
/* readonly attribute int64_t creationTime; */
NS_IMETHOD GetCreationTime(int64_t *aCreationTime) = 0;
/* readonly attribute int64_t lastAccessed; */
NS_IMETHOD GetLastAccessed(int64_t *aLastAccessed) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsICookie2, NS_ICOOKIE2_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICOOKIE2 \
NS_IMETHOD GetRawHost(nsACString & aRawHost); \
NS_IMETHOD GetIsSession(bool *aIsSession); \
NS_IMETHOD GetExpiry(int64_t *aExpiry); \
NS_IMETHOD GetIsHttpOnly(bool *aIsHttpOnly); \
NS_IMETHOD GetCreationTime(int64_t *aCreationTime); \
NS_IMETHOD GetLastAccessed(int64_t *aLastAccessed);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICOOKIE2(_to) \
NS_IMETHOD GetRawHost(nsACString & aRawHost) { return _to GetRawHost(aRawHost); } \
NS_IMETHOD GetIsSession(bool *aIsSession) { return _to GetIsSession(aIsSession); } \
NS_IMETHOD GetExpiry(int64_t *aExpiry) { return _to GetExpiry(aExpiry); } \
NS_IMETHOD GetIsHttpOnly(bool *aIsHttpOnly) { return _to GetIsHttpOnly(aIsHttpOnly); } \
NS_IMETHOD GetCreationTime(int64_t *aCreationTime) { return _to GetCreationTime(aCreationTime); } \
NS_IMETHOD GetLastAccessed(int64_t *aLastAccessed) { return _to GetLastAccessed(aLastAccessed); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICOOKIE2(_to) \
NS_IMETHOD GetRawHost(nsACString & aRawHost) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRawHost(aRawHost); } \
NS_IMETHOD GetIsSession(bool *aIsSession) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsSession(aIsSession); } \
NS_IMETHOD GetExpiry(int64_t *aExpiry) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetExpiry(aExpiry); } \
NS_IMETHOD GetIsHttpOnly(bool *aIsHttpOnly) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsHttpOnly(aIsHttpOnly); } \
NS_IMETHOD GetCreationTime(int64_t *aCreationTime) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCreationTime(aCreationTime); } \
NS_IMETHOD GetLastAccessed(int64_t *aLastAccessed) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLastAccessed(aLastAccessed); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsCookie2 : public nsICookie2
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICOOKIE2
nsCookie2();
private:
~nsCookie2();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsCookie2, nsICookie2)
nsCookie2::nsCookie2()
{
/* member initializers and constructor code */
}
nsCookie2::~nsCookie2()
{
/* destructor code */
}
/* readonly attribute AUTF8String rawHost; */
NS_IMETHODIMP nsCookie2::GetRawHost(nsACString & aRawHost)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isSession; */
NS_IMETHODIMP nsCookie2::GetIsSession(bool *aIsSession)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute int64_t expiry; */
NS_IMETHODIMP nsCookie2::GetExpiry(int64_t *aExpiry)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isHttpOnly; */
NS_IMETHODIMP nsCookie2::GetIsHttpOnly(bool *aIsHttpOnly)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute int64_t creationTime; */
NS_IMETHODIMP nsCookie2::GetCreationTime(int64_t *aCreationTime)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute int64_t lastAccessed; */
NS_IMETHODIMP nsCookie2::GetLastAccessed(int64_t *aLastAccessed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsICookie2_h__ */