Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/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) override; \
NS_IMETHOD GetIsSession(bool *aIsSession) override; \
NS_IMETHOD GetExpiry(int64_t *aExpiry) override; \
NS_IMETHOD GetIsHttpOnly(bool *aIsHttpOnly) override; \
NS_IMETHOD GetCreationTime(int64_t *aCreationTime) override; \
NS_IMETHOD GetLastAccessed(int64_t *aLastAccessed) 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_NSICOOKIE2 \
NS_METHOD GetRawHost(nsACString & aRawHost); \
NS_METHOD GetIsSession(bool *aIsSession); \
NS_METHOD GetExpiry(int64_t *aExpiry); \
NS_METHOD GetIsHttpOnly(bool *aIsHttpOnly); \
NS_METHOD GetCreationTime(int64_t *aCreationTime); \
NS_METHOD 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) override { return _to GetRawHost(aRawHost); } \
NS_IMETHOD GetIsSession(bool *aIsSession) override { return _to GetIsSession(aIsSession); } \
NS_IMETHOD GetExpiry(int64_t *aExpiry) override { return _to GetExpiry(aExpiry); } \
NS_IMETHOD GetIsHttpOnly(bool *aIsHttpOnly) override { return _to GetIsHttpOnly(aIsHttpOnly); } \
NS_IMETHOD GetCreationTime(int64_t *aCreationTime) override { return _to GetCreationTime(aCreationTime); } \
NS_IMETHOD GetLastAccessed(int64_t *aLastAccessed) override { 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) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRawHost(aRawHost); } \
NS_IMETHOD GetIsSession(bool *aIsSession) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsSession(aIsSession); } \
NS_IMETHOD GetExpiry(int64_t *aExpiry) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetExpiry(aExpiry); } \
NS_IMETHOD GetIsHttpOnly(bool *aIsHttpOnly) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsHttpOnly(aIsHttpOnly); } \
NS_IMETHOD GetCreationTime(int64_t *aCreationTime) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCreationTime(aCreationTime); } \
NS_IMETHOD GetLastAccessed(int64_t *aLastAccessed) override { 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_ISUPPORTS(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__ */