summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/net_internals/modules_view.html
blob: 0091fcc6a5acaad55591cf12f28841932613cfaf (plain)
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
<style>

.modules-view-extension-list tr.enabled {
  background-color: #F0FFF0;
}

.modules-view-extension-list tr:not(.enabled) {
  background-color: #FFF0F0;
}

</style>

<div id=modules-view-tab-content class=content-box>
  <h4 style='margin-top:0'>Chrome Extensions</h4>
  <div id="modules-view-extension-info">
    <div jsdisplay="typeof extensionInfo == 'undefined'">No information</div>
    <div jsdisplay="typeof extensionInfo != 'undefined' && extensionInfo.length == 0">None</div>
    <div jsdisplay="typeof extensionInfo != 'undefined' && extensionInfo.length != 0">
      <table class=styled-table>
        <thead>
          <tr>
            <th>ID</th>
            <th>App</th>
            <th>Enabled</th>
            <th>Name</th>
            <th>Version</th>
            <th>Description</th>
          </tr>
        </thead>
        <tbody class=modules-view-extension-list>
          <tr jsselect="extensionInfo" jsvalues=".className: enabled ? 'enabled' : ''">
            <td jscontent="id"></td>
            <td jscontent="packagedApp"></td>
            <td jscontent="enabled"></td>
            <td jscontent="name"></td>
            <td jscontent="version"></td>
            <td jscontent="description"></td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>

  <!-- Only shown for Windows log dumps -->
  <div id=modules-view-windows-service-providers style="display: none;"
      jsdisplay="typeof $this != 'undefined'">
    <h4>Layered Service Providers</h4>
    <table class="styled-table">
      <thead>
        <tr>
          <th>Name</th>
          <th>Version</th>
          <th>Type</th>
          <th>Socket Type</th>
          <th>Protocol</th>
          <th>Path</th>
        </tr>
      </thead>
      <tbody>
        <tr jsselect="service_providers">
          <td jscontent="name"></td>
          <td jscontent="version"></td>
          <td jscontent="ModulesView.getLayeredServiceProviderType($this)"></td>
          <td jscontent="ModulesView.getLayeredServiceProviderSocketType($this)"></td>
          <td jscontent="ModulesView.getLayeredServiceProviderProtocolType($this)"></td>
          <td jscontent="path"></td>
        </tr>
      </tbody>
    </table>
    <h4>Namespace Providers</h4>
    <table class="styled-table">
      <thead>
        <tr>
          <th>Name</th>
          <th>Version</th>
          <th>Namespace</th>
          <th>Active</th>
        </tr>
      </thead>
      <tbody>
        <tr jsselect="namespace_providers">
          <td jscontent="name"></td>
          <td jscontent="version"></td>
          <td jscontent="ModulesView.getNamespaceProviderType($this)"></td>
          <td jscontent="active"></td>
        </tr>
      </tbody>
    </table>
  </div>
</div>