LCOV - code coverage report
Current view: top level - obj-x86_64-pc-linux-gnu/dist/include - nsIRequestObserver.h (source / functions) Hit Total Coverage
Test: output.info Lines: 1 1 100.0 %
Date: 2017-07-14 16:53:18 Functions: 1 1 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIRequestObserver.idl
       3             :  */
       4             : 
       5             : #ifndef __gen_nsIRequestObserver_h__
       6             : #define __gen_nsIRequestObserver_h__
       7             : 
       8             : 
       9             : #ifndef __gen_nsISupports_h__
      10             : #include "nsISupports.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 nsIRequest; /* forward declaration */
      18             : 
      19             : 
      20             : /* starting interface:    nsIRequestObserver */
      21             : #define NS_IREQUESTOBSERVER_IID_STR "fd91e2e0-1481-11d3-9333-00104ba0fd40"
      22             : 
      23             : #define NS_IREQUESTOBSERVER_IID \
      24             :   {0xfd91e2e0, 0x1481, 0x11d3, \
      25             :     { 0x93, 0x33, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40 }}
      26             : 
      27        1450 : class NS_NO_VTABLE nsIRequestObserver : public nsISupports {
      28             :  public:
      29             : 
      30             :   NS_DECLARE_STATIC_IID_ACCESSOR(NS_IREQUESTOBSERVER_IID)
      31             : 
      32             :   /* void onStartRequest (in nsIRequest aRequest, in nsISupports aContext); */
      33             :   NS_IMETHOD OnStartRequest(nsIRequest *aRequest, nsISupports *aContext) = 0;
      34             : 
      35             :   /* void onStopRequest (in nsIRequest aRequest, in nsISupports aContext, in nsresult aStatusCode); */
      36             :   NS_IMETHOD OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode) = 0;
      37             : 
      38             : };
      39             : 
      40             :   NS_DEFINE_STATIC_IID_ACCESSOR(nsIRequestObserver, NS_IREQUESTOBSERVER_IID)
      41             : 
      42             : /* Use this macro when declaring classes that implement this interface. */
      43             : #define NS_DECL_NSIREQUESTOBSERVER \
      44             :   NS_IMETHOD OnStartRequest(nsIRequest *aRequest, nsISupports *aContext) override; \
      45             :   NS_IMETHOD OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode) override; 
      46             : 
      47             : /* Use this macro when declaring the members of this interface when the
      48             :    class doesn't implement the interface. This is useful for forwarding. */
      49             : #define NS_DECL_NON_VIRTUAL_NSIREQUESTOBSERVER \
      50             :   nsresult OnStartRequest(nsIRequest *aRequest, nsISupports *aContext); \
      51             :   nsresult OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode); 
      52             : 
      53             : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      54             : #define NS_FORWARD_NSIREQUESTOBSERVER(_to) \
      55             :   NS_IMETHOD OnStartRequest(nsIRequest *aRequest, nsISupports *aContext) override { return _to OnStartRequest(aRequest, aContext); } \
      56             :   NS_IMETHOD OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode) override { return _to OnStopRequest(aRequest, aContext, aStatusCode); } 
      57             : 
      58             : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      59             : #define NS_FORWARD_SAFE_NSIREQUESTOBSERVER(_to) \
      60             :   NS_IMETHOD OnStartRequest(nsIRequest *aRequest, nsISupports *aContext) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnStartRequest(aRequest, aContext); } \
      61             :   NS_IMETHOD OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnStopRequest(aRequest, aContext, aStatusCode); } 
      62             : 
      63             : #if 0
      64             : /* Use the code below as a template for the implementation class for this interface. */
      65             : 
      66             : /* Header file */
      67             : class nsRequestObserver : public nsIRequestObserver
      68             : {
      69             : public:
      70             :   NS_DECL_ISUPPORTS
      71             :   NS_DECL_NSIREQUESTOBSERVER
      72             : 
      73             :   nsRequestObserver();
      74             : 
      75             : private:
      76             :   ~nsRequestObserver();
      77             : 
      78             : protected:
      79             :   /* additional members */
      80             : };
      81             : 
      82             : /* Implementation file */
      83             : NS_IMPL_ISUPPORTS(nsRequestObserver, nsIRequestObserver)
      84             : 
      85             : nsRequestObserver::nsRequestObserver()
      86             : {
      87             :   /* member initializers and constructor code */
      88             : }
      89             : 
      90             : nsRequestObserver::~nsRequestObserver()
      91             : {
      92             :   /* destructor code */
      93             : }
      94             : 
      95             : /* void onStartRequest (in nsIRequest aRequest, in nsISupports aContext); */
      96             : NS_IMETHODIMP nsRequestObserver::OnStartRequest(nsIRequest *aRequest, nsISupports *aContext)
      97             : {
      98             :     return NS_ERROR_NOT_IMPLEMENTED;
      99             : }
     100             : 
     101             : /* void onStopRequest (in nsIRequest aRequest, in nsISupports aContext, in nsresult aStatusCode); */
     102             : NS_IMETHODIMP nsRequestObserver::OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode)
     103             : {
     104             :     return NS_ERROR_NOT_IMPLEMENTED;
     105             : }
     106             : 
     107             : /* End of implementation class template. */
     108             : #endif
     109             : 
     110             : 
     111             : #endif /* __gen_nsIRequestObserver_h__ */

Generated by: LCOV version 1.13