This file is indexed.

/usr/include/thunderbird-11.0.1/nsIXULContextMenuBuilder.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/content/xul/content/public/nsIXULContextMenuBuilder.idl
 */

#ifndef __gen_nsIXULContextMenuBuilder_h__
#define __gen_nsIXULContextMenuBuilder_h__


#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMDocumentFragment; /* forward declaration */


/* starting interface:    nsIXULContextMenuBuilder */
#define NS_IXULCONTEXTMENUBUILDER_IID_STR "eb6b42c0-2f1c-4760-b5ca-bdc9b3ec77d4"

#define NS_IXULCONTEXTMENUBUILDER_IID \
  {0xeb6b42c0, 0x2f1c, 0x4760, \
    { 0xb5, 0xca, 0xbd, 0xc9, 0xb3, 0xec, 0x77, 0xd4 }}

class NS_NO_VTABLE NS_SCRIPTABLE nsIXULContextMenuBuilder : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IXULCONTEXTMENUBUILDER_IID)

  /* void init (in nsIDOMDocumentFragment aDocumentFragment, in AString aGeneratedItemIdAttrName); */
  NS_SCRIPTABLE NS_IMETHOD Init(nsIDOMDocumentFragment *aDocumentFragment, const nsAString & aGeneratedItemIdAttrName) = 0;

  /* void click (in DOMString aGeneratedItemId); */
  NS_SCRIPTABLE NS_IMETHOD Click(const nsAString & aGeneratedItemId) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIXULContextMenuBuilder, NS_IXULCONTEXTMENUBUILDER_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIXULCONTEXTMENUBUILDER \
  NS_SCRIPTABLE NS_IMETHOD Init(nsIDOMDocumentFragment *aDocumentFragment, const nsAString & aGeneratedItemIdAttrName); \
  NS_SCRIPTABLE NS_IMETHOD Click(const nsAString & aGeneratedItemId); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIXULCONTEXTMENUBUILDER(_to) \
  NS_SCRIPTABLE NS_IMETHOD Init(nsIDOMDocumentFragment *aDocumentFragment, const nsAString & aGeneratedItemIdAttrName) { return _to Init(aDocumentFragment, aGeneratedItemIdAttrName); } \
  NS_SCRIPTABLE NS_IMETHOD Click(const nsAString & aGeneratedItemId) { return _to Click(aGeneratedItemId); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIXULCONTEXTMENUBUILDER(_to) \
  NS_SCRIPTABLE NS_IMETHOD Init(nsIDOMDocumentFragment *aDocumentFragment, const nsAString & aGeneratedItemIdAttrName) { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(aDocumentFragment, aGeneratedItemIdAttrName); } \
  NS_SCRIPTABLE NS_IMETHOD Click(const nsAString & aGeneratedItemId) { return !_to ? NS_ERROR_NULL_POINTER : _to->Click(aGeneratedItemId); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsXULContextMenuBuilder : public nsIXULContextMenuBuilder
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIXULCONTEXTMENUBUILDER

  nsXULContextMenuBuilder();

private:
  ~nsXULContextMenuBuilder();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsXULContextMenuBuilder, nsIXULContextMenuBuilder)

nsXULContextMenuBuilder::nsXULContextMenuBuilder()
{
  /* member initializers and constructor code */
}

nsXULContextMenuBuilder::~nsXULContextMenuBuilder()
{
  /* destructor code */
}

/* void init (in nsIDOMDocumentFragment aDocumentFragment, in AString aGeneratedItemIdAttrName); */
NS_IMETHODIMP nsXULContextMenuBuilder::Init(nsIDOMDocumentFragment *aDocumentFragment, const nsAString & aGeneratedItemIdAttrName)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void click (in DOMString aGeneratedItemId); */
NS_IMETHODIMP nsXULContextMenuBuilder::Click(const nsAString & aGeneratedItemId)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_nsIXULContextMenuBuilder_h__ */