This file is indexed.

/usr/share/idl/thunderbird/nsIBrowserElementAPI.idl 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
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* 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 "nsISupports.idl"

interface nsIDOMDOMRequest;
interface nsIFrameLoader;

[scriptable, function, uuid(c0c2dd9b-41ef-42dd-a4c1-e456619c1941)]
interface nsIBrowserElementNextPaintListener : nsISupports
{
  void recvNextPaint();
};

%{C++
#define BROWSER_ELEMENT_API_CONTRACTID "@mozilla.org/dom/browser-element-api;1"
#define BROWSER_ELEMENT_API_CID                                 \
    { 0x651db7e3, 0x1734, 0x4536,                               \
      { 0xb1, 0x5a, 0x5b, 0x3a, 0xe6, 0x44, 0x13, 0x4c } }
%}

/**
 * Interface to the BrowserElementParent implementation. All methods
 * but setFrameLoader throw when the remote process is dead.
 */
[scriptable, uuid(3811446f-90bb-42c1-b2b6-aae3603b61e1)]
interface nsIBrowserElementAPI : nsISupports
{
  void setFrameLoader(in nsIFrameLoader frameLoader);

  void setVisible(in boolean visible);
  nsIDOMDOMRequest getVisible();
  void setActive(in boolean active);
  boolean getActive();

  void sendMouseEvent(in DOMString type,
                      in uint32_t x,
                      in uint32_t y,
                      in uint32_t button,
                      in uint32_t clickCount,
                      in uint32_t mifiers);
  void sendTouchEvent(in DOMString aType,
                      [const, array, size_is(count)] in uint32_t aIdentifiers,
                      [const, array, size_is(count)] in int32_t aXs,
                      [const, array, size_is(count)] in int32_t aYs,
                      [const, array, size_is(count)] in uint32_t aRxs,
                      [const, array, size_is(count)] in uint32_t aRys,
                      [const, array, size_is(count)] in float aRotationAngles,
                      [const, array, size_is(count)] in float aForces,
                      in uint32_t count,
                      in long aModifiers);
  void goBack();
  void goForward();
  void reload(in boolean hardReload);
  void stop();
  nsIDOMDOMRequest download(in DOMString url,
                            [optional] in jsval options);
  nsIDOMDOMRequest purgeHistory();
  nsIDOMDOMRequest getScreenshot(in uint32_t width,
                                 in uint32_t height,
                                 [optional] in DOMString mimeType);
  void zoom(in float zoom);
  nsIDOMDOMRequest getCanGoBack();
  nsIDOMDOMRequest getCanGoForward();
  nsIDOMDOMRequest getContentDimensions();

  void addNextPaintListener(in nsIBrowserElementNextPaintListener listener);
  void removeNextPaintListener(in nsIBrowserElementNextPaintListener listener);

  nsIDOMDOMRequest setInputMethodActive(in boolean isActive);

  void setNFCFocus(in boolean isFocus);
};