LCOV - code coverage report
Current view: top level - obj-x86_64-pc-linux-gnu/dist/include - amIAddonPathService.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/amIAddonPathService.idl
       3             :  */
       4             : 
       5             : #ifndef __gen_amIAddonPathService_h__
       6             : #define __gen_amIAddonPathService_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 nsIURI; /* forward declaration */
      18             : 
      19             : 
      20             : /* starting interface:    amIAddonPathService */
      21             : #define AMIADDONPATHSERVICE_IID_STR "fcd9e270-dfb1-11e3-8b68-0800200c9a66"
      22             : 
      23             : #define AMIADDONPATHSERVICE_IID \
      24             :   {0xfcd9e270, 0xdfb1, 0x11e3, \
      25             :     { 0x8b, 0x68, 0x08, 0x00, 0x20, 0x0c, 0x9a, 0x66 }}
      26             : 
      27           1 : class NS_NO_VTABLE amIAddonPathService : public nsISupports {
      28             :  public:
      29             : 
      30             :   NS_DECLARE_STATIC_IID_ACCESSOR(AMIADDONPATHSERVICE_IID)
      31             : 
      32             :   /* AString findAddonId (in AString path); */
      33             :   NS_IMETHOD FindAddonId(const nsAString & path, nsAString & _retval) = 0;
      34             : 
      35             :   /* void insertPath (in AString path, in AString addonId); */
      36             :   NS_IMETHOD InsertPath(const nsAString & path, const nsAString & addonId) = 0;
      37             : 
      38             :   /* AString mapURIToAddonId (in nsIURI aURI); */
      39             :   NS_IMETHOD MapURIToAddonId(nsIURI *aURI, nsAString & _retval) = 0;
      40             : 
      41             : };
      42             : 
      43             :   NS_DEFINE_STATIC_IID_ACCESSOR(amIAddonPathService, AMIADDONPATHSERVICE_IID)
      44             : 
      45             : /* Use this macro when declaring classes that implement this interface. */
      46             : #define NS_DECL_AMIADDONPATHSERVICE \
      47             :   NS_IMETHOD FindAddonId(const nsAString & path, nsAString & _retval) override; \
      48             :   NS_IMETHOD InsertPath(const nsAString & path, const nsAString & addonId) override; \
      49             :   NS_IMETHOD MapURIToAddonId(nsIURI *aURI, nsAString & _retval) override; 
      50             : 
      51             : /* Use this macro when declaring the members of this interface when the
      52             :    class doesn't implement the interface. This is useful for forwarding. */
      53             : #define NS_DECL_NON_VIRTUAL_AMIADDONPATHSERVICE \
      54             :   nsresult FindAddonId(const nsAString & path, nsAString & _retval); \
      55             :   nsresult InsertPath(const nsAString & path, const nsAString & addonId); \
      56             :   nsresult MapURIToAddonId(nsIURI *aURI, nsAString & _retval); 
      57             : 
      58             : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
      59             : #define NS_FORWARD_AMIADDONPATHSERVICE(_to) \
      60             :   NS_IMETHOD FindAddonId(const nsAString & path, nsAString & _retval) override { return _to FindAddonId(path, _retval); } \
      61             :   NS_IMETHOD InsertPath(const nsAString & path, const nsAString & addonId) override { return _to InsertPath(path, addonId); } \
      62             :   NS_IMETHOD MapURIToAddonId(nsIURI *aURI, nsAString & _retval) override { return _to MapURIToAddonId(aURI, _retval); } 
      63             : 
      64             : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
      65             : #define NS_FORWARD_SAFE_AMIADDONPATHSERVICE(_to) \
      66             :   NS_IMETHOD FindAddonId(const nsAString & path, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->FindAddonId(path, _retval); } \
      67             :   NS_IMETHOD InsertPath(const nsAString & path, const nsAString & addonId) override { return !_to ? NS_ERROR_NULL_POINTER : _to->InsertPath(path, addonId); } \
      68             :   NS_IMETHOD MapURIToAddonId(nsIURI *aURI, nsAString & _retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->MapURIToAddonId(aURI, _retval); } 
      69             : 
      70             : #if 0
      71             : /* Use the code below as a template for the implementation class for this interface. */
      72             : 
      73             : /* Header file */
      74             : class amAddonPathService : public amIAddonPathService
      75             : {
      76             : public:
      77             :   NS_DECL_ISUPPORTS
      78             :   NS_DECL_AMIADDONPATHSERVICE
      79             : 
      80             :   amAddonPathService();
      81             : 
      82             : private:
      83             :   ~amAddonPathService();
      84             : 
      85             : protected:
      86             :   /* additional members */
      87             : };
      88             : 
      89             : /* Implementation file */
      90             : NS_IMPL_ISUPPORTS(amAddonPathService, amIAddonPathService)
      91             : 
      92             : amAddonPathService::amAddonPathService()
      93             : {
      94             :   /* member initializers and constructor code */
      95             : }
      96             : 
      97             : amAddonPathService::~amAddonPathService()
      98             : {
      99             :   /* destructor code */
     100             : }
     101             : 
     102             : /* AString findAddonId (in AString path); */
     103             : NS_IMETHODIMP amAddonPathService::FindAddonId(const nsAString & path, nsAString & _retval)
     104             : {
     105             :     return NS_ERROR_NOT_IMPLEMENTED;
     106             : }
     107             : 
     108             : /* void insertPath (in AString path, in AString addonId); */
     109             : NS_IMETHODIMP amAddonPathService::InsertPath(const nsAString & path, const nsAString & addonId)
     110             : {
     111             :     return NS_ERROR_NOT_IMPLEMENTED;
     112             : }
     113             : 
     114             : /* AString mapURIToAddonId (in nsIURI aURI); */
     115             : NS_IMETHODIMP amAddonPathService::MapURIToAddonId(nsIURI *aURI, nsAString & _retval)
     116             : {
     117             :     return NS_ERROR_NOT_IMPLEMENTED;
     118             : }
     119             : 
     120             : /* End of implementation class template. */
     121             : #endif
     122             : 
     123             : 
     124             : #endif /* __gen_amIAddonPathService_h__ */

Generated by: LCOV version 1.13