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

Unified 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, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « netlog_viewer/main.js ('k') | netlog_viewer/modules_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/modules_view.html
diff --git a/netlog_viewer/modules_view.html b/netlog_viewer/modules_view.html
new file mode 100644
index 0000000000000000000000000000000000000000..3be1bfa2c0c8fae5ec19d73bf84f290a0ef0ceb5
--- /dev/null
+++ b/netlog_viewer/modules_view.html
@@ -0,0 +1,67 @@
+<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 id=modules-view-extension-info-unavailable>No information</div>
+ <div id=modules-view-extension-info-no-content>None</div>
+ <div id=modules-view-extension-info-content>
+ <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 id=modules-view-extension-info-tbody class=modules-view-extension-list>
+ </tbody>
+ </table>
+ </div>
+ </div>
+
+ <!-- Only shown for Windows log dumps -->
+ <div id=modules-view-windows-service-providers>
+ <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 id=modules-view-service-providers-tbody>
+ </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 id=modules-view-namespace-providers-tbody>
+ </tbody>
+ </table>
+ </div>
+</div>
« 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