LCOV - code coverage report
Current view: directory - objdir/dist/include - nsIDOMCustomEvent.h (source / functions) Found Hit Coverage
Test: app.info Lines: 1 0 0.0 %
Date: 2012-06-02 Functions: 1 0 0.0 %

       1                 : /*
       2                 :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/dom/interfaces/events/nsIDOMCustomEvent.idl
       3                 :  */
       4                 : 
       5                 : #ifndef __gen_nsIDOMCustomEvent_h__
       6                 : #define __gen_nsIDOMCustomEvent_h__
       7                 : 
       8                 : 
       9                 : #ifndef __gen_nsIDOMEvent_h__
      10                 : #include "nsIDOMEvent.h"
      11                 : #endif
      12                 : 
      13                 : /* For IDL files that don't want to include root IDL files. */
      14                 : #ifndef NS_NO_VTABLE
      15                 : #define NS_NO_VTABLE
      16                 : #endif
      17                 : class nsIVariant; /* forward declaration */
      18                 : 
      19                 : 
      20                 : /* starting interface:    nsIDOMCustomEvent */
      21                 : #define NS_IDOMCUSTOMEVENT_IID_STR "eee65f98-bb6f-489c-b7e3-40e5f0c90645"
      22                 : 
      23                 : #define NS_IDOMCUSTOMEVENT_IID \
      24                 :   {0xeee65f98, 0xbb6f, 0x489c, \
      25                 :     { 0xb7, 0xe3, 0x40, 0xe5, 0xf0, 0xc9, 0x06, 0x45 }}
      26                 : 
      27               0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMCustomEvent : public nsIDOMEvent {
      28                 :  public: 
      29                 : 
      30                 :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCUSTOMEVENT_IID)
      31                 : 
      32                 :   /* readonly attribute nsIVariant detail; */
      33                 :   NS_SCRIPTABLE NS_IMETHOD GetDetail(nsIVariant * *aDetail) = 0;
      34                 : 
      35                 :   /* void initCustomEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in nsIVariant detailArg); */
      36                 :   NS_SCRIPTABLE NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg) = 0;
      37                 : 
      38                 : };
      39                 : 
      40                 :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCustomEvent, NS_IDOMCUSTOMEVENT_IID)
      41                 : 
      42                 : /* Use this macro when declaring classes that implement this interface. */
      43                 : #define NS_DECL_NSIDOMCUSTOMEVENT \
      44                 :   NS_SCRIPTABLE NS_IMETHOD GetDetail(nsIVariant * *aDetail); \
      45                 :   NS_SCRIPTABLE NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg); 
      46                 : 
      47                 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      48                 : #define NS_FORWARD_NSIDOMCUSTOMEVENT(_to) \
      49                 :   NS_SCRIPTABLE NS_IMETHOD GetDetail(nsIVariant * *aDetail) { return _to GetDetail(aDetail); } \
      50                 :   NS_SCRIPTABLE NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg) { return _to InitCustomEvent(typeArg, canBubbleArg, cancelableArg, detailArg); } 
      51                 : 
      52                 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      53                 : #define NS_FORWARD_SAFE_NSIDOMCUSTOMEVENT(_to) \
      54                 :   NS_SCRIPTABLE NS_IMETHOD GetDetail(nsIVariant * *aDetail) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDetail(aDetail); } \
      55                 :   NS_SCRIPTABLE NS_IMETHOD InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitCustomEvent(typeArg, canBubbleArg, cancelableArg, detailArg); } 
      56                 : 
      57                 : #if 0
      58                 : /* Use the code below as a template for the implementation class for this interface. */
      59                 : 
      60                 : /* Header file */
      61                 : class nsDOMCustomEvent : public nsIDOMCustomEvent
      62                 : {
      63                 : public:
      64                 :   NS_DECL_ISUPPORTS
      65                 :   NS_DECL_NSIDOMCUSTOMEVENT
      66                 : 
      67                 :   nsDOMCustomEvent();
      68                 : 
      69                 : private:
      70                 :   ~nsDOMCustomEvent();
      71                 : 
      72                 : protected:
      73                 :   /* additional members */
      74                 : };
      75                 : 
      76                 : /* Implementation file */
      77                 : NS_IMPL_ISUPPORTS1(nsDOMCustomEvent, nsIDOMCustomEvent)
      78                 : 
      79                 : nsDOMCustomEvent::nsDOMCustomEvent()
      80                 : {
      81                 :   /* member initializers and constructor code */
      82                 : }
      83                 : 
      84                 : nsDOMCustomEvent::~nsDOMCustomEvent()
      85                 : {
      86                 :   /* destructor code */
      87                 : }
      88                 : 
      89                 : /* readonly attribute nsIVariant detail; */
      90                 : NS_IMETHODIMP nsDOMCustomEvent::GetDetail(nsIVariant * *aDetail)
      91                 : {
      92                 :     return NS_ERROR_NOT_IMPLEMENTED;
      93                 : }
      94                 : 
      95                 : /* void initCustomEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in nsIVariant detailArg); */
      96                 : NS_IMETHODIMP nsDOMCustomEvent::InitCustomEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, nsIVariant *detailArg)
      97                 : {
      98                 :     return NS_ERROR_NOT_IMPLEMENTED;
      99                 : }
     100                 : 
     101                 : /* End of implementation class template. */
     102                 : #endif
     103                 : 
     104                 : 
     105                 : #endif /* __gen_nsIDOMCustomEvent_h__ */

Generated by: LCOV version 1.7