This file is indexed.

/usr/include/thunderbird/nsIAuthPrompt.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.

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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM ../../../dist/idl/nsIAuthPrompt.idl
 */

#ifndef __gen_nsIAuthPrompt_h__
#define __gen_nsIAuthPrompt_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 nsIPrompt; /* forward declaration */


/* starting interface:    nsIAuthPrompt */
#define NS_IAUTHPROMPT_IID_STR "358089f9-ee4b-4711-82fd-bcd07fc62061"

#define NS_IAUTHPROMPT_IID \
  {0x358089f9, 0xee4b, 0x4711, \
    { 0x82, 0xfd, 0xbc, 0xd0, 0x7f, 0xc6, 0x20, 0x61 }}

class NS_NO_VTABLE nsIAuthPrompt : public nsISupports {
 public: 

  NS_DECLARE_STATIC_IID_ACCESSOR(NS_IAUTHPROMPT_IID)

  enum {
    SAVE_PASSWORD_NEVER = 0U,
    SAVE_PASSWORD_FOR_SESSION = 1U,
    SAVE_PASSWORD_PERMANENTLY = 2U
  };

  /* boolean prompt (in wstring dialogTitle, in wstring text, in wstring passwordRealm, in uint32_t savePassword, in wstring defaultText, out wstring result); */
  NS_IMETHOD Prompt(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, const char16_t * defaultText, char16_t * *result, bool *_retval) = 0;

  /* boolean promptUsernameAndPassword (in wstring dialogTitle, in wstring text, in wstring passwordRealm, in uint32_t savePassword, inout wstring user, inout wstring pwd); */
  NS_IMETHOD PromptUsernameAndPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *user, char16_t * *pwd, bool *_retval) = 0;

  /* boolean promptPassword (in wstring dialogTitle, in wstring text, in wstring passwordRealm, in uint32_t savePassword, inout wstring pwd); */
  NS_IMETHOD PromptPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *pwd, bool *_retval) = 0;

};

  NS_DEFINE_STATIC_IID_ACCESSOR(nsIAuthPrompt, NS_IAUTHPROMPT_IID)

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIAUTHPROMPT \
  NS_IMETHOD Prompt(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, const char16_t * defaultText, char16_t * *result, bool *_retval) override; \
  NS_IMETHOD PromptUsernameAndPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *user, char16_t * *pwd, bool *_retval) override; \
  NS_IMETHOD PromptPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *pwd, bool *_retval) override; 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIAUTHPROMPT(_to) \
  NS_IMETHOD Prompt(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, const char16_t * defaultText, char16_t * *result, bool *_retval) override { return _to Prompt(dialogTitle, text, passwordRealm, savePassword, defaultText, result, _retval); } \
  NS_IMETHOD PromptUsernameAndPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *user, char16_t * *pwd, bool *_retval) override { return _to PromptUsernameAndPassword(dialogTitle, text, passwordRealm, savePassword, user, pwd, _retval); } \
  NS_IMETHOD PromptPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *pwd, bool *_retval) override { return _to PromptPassword(dialogTitle, text, passwordRealm, savePassword, pwd, _retval); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIAUTHPROMPT(_to) \
  NS_IMETHOD Prompt(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, const char16_t * defaultText, char16_t * *result, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Prompt(dialogTitle, text, passwordRealm, savePassword, defaultText, result, _retval); } \
  NS_IMETHOD PromptUsernameAndPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *user, char16_t * *pwd, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->PromptUsernameAndPassword(dialogTitle, text, passwordRealm, savePassword, user, pwd, _retval); } \
  NS_IMETHOD PromptPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *pwd, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->PromptPassword(dialogTitle, text, passwordRealm, savePassword, pwd, _retval); } 

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

/* Header file */
class nsAuthPrompt : public nsIAuthPrompt
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIAUTHPROMPT

  nsAuthPrompt();

private:
  ~nsAuthPrompt();

protected:
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS(nsAuthPrompt, nsIAuthPrompt)

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

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

/* boolean prompt (in wstring dialogTitle, in wstring text, in wstring passwordRealm, in uint32_t savePassword, in wstring defaultText, out wstring result); */
NS_IMETHODIMP nsAuthPrompt::Prompt(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, const char16_t * defaultText, char16_t * *result, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean promptUsernameAndPassword (in wstring dialogTitle, in wstring text, in wstring passwordRealm, in uint32_t savePassword, inout wstring user, inout wstring pwd); */
NS_IMETHODIMP nsAuthPrompt::PromptUsernameAndPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *user, char16_t * *pwd, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean promptPassword (in wstring dialogTitle, in wstring text, in wstring passwordRealm, in uint32_t savePassword, inout wstring pwd); */
NS_IMETHODIMP nsAuthPrompt::PromptPassword(const char16_t * dialogTitle, const char16_t * text, const char16_t * passwordRealm, uint32_t savePassword, char16_t * *pwd, bool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIAuthPrompt_h__ */