Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1051)

Side by Side Diff: netlog_viewer/modules_view.html

Issue 2178423002: Bring the gh-pages branch up to date with the master branch (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « netlog_viewer/main.js ('k') | netlog_viewer/modules_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <style>
2
3 .modules-view-extension-list tr.enabled {
4 background-color: #F0FFF0;
5 }
6
7 .modules-view-extension-list tr:not(.enabled) {
8 background-color: #FFF0F0;
9 }
10
11 </style>
12
13 <div id=modules-view-tab-content class=content-box>
14 <h4 style='margin-top:0'>Chrome Extensions</h4>
15 <div id="modules-view-extension-info">
16 <div id=modules-view-extension-info-unavailable>No information</div>
17 <div id=modules-view-extension-info-no-content>None</div>
18 <div id=modules-view-extension-info-content>
19 <table class=styled-table>
20 <thead>
21 <tr>
22 <th>ID</th>
23 <th>App</th>
24 <th>Enabled</th>
25 <th>Name</th>
26 <th>Version</th>
27 <th>Description</th>
28 </tr>
29 </thead>
30 <tbody id=modules-view-extension-info-tbody class=modules-view-extension -list>
31 </tbody>
32 </table>
33 </div>
34 </div>
35
36 <!-- Only shown for Windows log dumps -->
37 <div id=modules-view-windows-service-providers>
38 <h4>Layered Service Providers</h4>
39 <table class="styled-table">
40 <thead>
41 <tr>
42 <th>Name</th>
43 <th>Version</th>
44 <th>Type</th>
45 <th>Socket Type</th>
46 <th>Protocol</th>
47 <th>Path</th>
48 </tr>
49 </thead>
50 <tbody id=modules-view-service-providers-tbody>
51 </tbody>
52 </table>
53 <h4>Namespace Providers</h4>
54 <table class="styled-table">
55 <thead>
56 <tr>
57 <th>Name</th>
58 <th>Version</th>
59 <th>Namespace</th>
60 <th>Active</th>
61 </tr>
62 </thead>
63 <tbody id=modules-view-namespace-providers-tbody>
64 </tbody>
65 </table>
66 </div>
67 </div>
OLDNEW
« no previous file with comments | « netlog_viewer/main.js ('k') | netlog_viewer/modules_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698