This file is indexed.

/usr/share/idl/thunderbird/nsIDOMContactManager.idl is in thunderbird-dev 1:24.4.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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "domstubs.idl"
#include "nsIContactProperties.idl"
#include "nsIDOMEventTarget.idl"

interface nsIArray;
interface nsIDOMDOMRequest;
interface nsIDOMDOMCursor;

[scriptable, uuid(72a5ee28-81d8-4af8-90b3-ae935396cc66)]
interface nsIDOMContact : nsIContactProperties
{
  attribute DOMString id;
  readonly attribute jsval     published;
  readonly attribute jsval     updated;

  void init(in nsIContactProperties properties);  // Workaround BUG 723206
};

[scriptable, uuid(8beb3a66-d70a-4111-b216-b8e995ad3aff)]
interface nsIDOMContactManager : nsISupports
{
  nsIDOMDOMRequest find(in nsIContactFindOptions options);

  nsIDOMDOMCursor getAll(in nsIContactFindSortOptions options);

  nsIDOMDOMRequest clear();

  nsIDOMDOMRequest save(in nsIDOMContact contact);

  nsIDOMDOMRequest remove(in nsIDOMContact contact);

  attribute nsIDOMEventListener oncontactchange;

  nsIDOMDOMRequest getRevision();

  nsIDOMDOMRequest getCount();
};