|
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/21573/task/21573/root/usr/lib/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/events/nsIDOMPageTransitionEvent.idl
*/
#ifndef __gen_nsIDOMPageTransitionEvent_h__
#define __gen_nsIDOMPageTransitionEvent_h__
#ifndef __gen_nsIDOMEvent_h__
#include "nsIDOMEvent.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: nsIDOMPageTransitionEvent */
#define NS_IDOMPAGETRANSITIONEVENT_IID_STR "9f3ffe42-bbd2-428d-97f1-6c158c6eb2f9"
#define NS_IDOMPAGETRANSITIONEVENT_IID \
{0x9f3ffe42, 0xbbd2, 0x428d, \
{ 0x97, 0xf1, 0x6c, 0x15, 0x8c, 0x6e, 0xb2, 0xf9 }}
class NS_NO_VTABLE nsIDOMPageTransitionEvent : public nsIDOMEvent {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMPAGETRANSITIONEVENT_IID)
/* readonly attribute boolean persisted; */
NS_IMETHOD GetPersisted(bool *aPersisted) = 0;
/* void initPageTransitionEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean canCancelArg, in boolean persisted); */
NS_IMETHOD InitPageTransitionEvent(const nsAString & typeArg, bool canBubbleArg, bool canCancelArg, bool persisted) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMPageTransitionEvent, NS_IDOMPAGETRANSITIONEVENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMPAGETRANSITIONEVENT \
NS_IMETHOD GetPersisted(bool *aPersisted); \
NS_IMETHOD InitPageTransitionEvent(const nsAString & typeArg, bool canBubbleArg, bool canCancelArg, bool persisted);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMPAGETRANSITIONEVENT(_to) \
NS_IMETHOD GetPersisted(bool *aPersisted) { return _to GetPersisted(aPersisted); } \
NS_IMETHOD InitPageTransitionEvent(const nsAString & typeArg, bool canBubbleArg, bool canCancelArg, bool persisted) { return _to InitPageTransitionEvent(typeArg, canBubbleArg, canCancelArg, persisted); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMPAGETRANSITIONEVENT(_to) \
NS_IMETHOD GetPersisted(bool *aPersisted) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPersisted(aPersisted); } \
NS_IMETHOD InitPageTransitionEvent(const nsAString & typeArg, bool canBubbleArg, bool canCancelArg, bool persisted) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitPageTransitionEvent(typeArg, canBubbleArg, canCancelArg, persisted); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMPageTransitionEvent : public nsIDOMPageTransitionEvent
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMPAGETRANSITIONEVENT
nsDOMPageTransitionEvent();
private:
~nsDOMPageTransitionEvent();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMPageTransitionEvent, nsIDOMPageTransitionEvent)
nsDOMPageTransitionEvent::nsDOMPageTransitionEvent()
{
/* member initializers and constructor code */
}
nsDOMPageTransitionEvent::~nsDOMPageTransitionEvent()
{
/* destructor code */
}
/* readonly attribute boolean persisted; */
NS_IMETHODIMP nsDOMPageTransitionEvent::GetPersisted(bool *aPersisted)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void initPageTransitionEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean canCancelArg, in boolean persisted); */
NS_IMETHODIMP nsDOMPageTransitionEvent::InitPageTransitionEvent(const nsAString & typeArg, bool canBubbleArg, bool canCancelArg, bool persisted)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMPageTransitionEvent_h__ */