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

Unified Diff: netlog_viewer/bandwidth_view.html

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge 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/assert.js ('k') | netlog_viewer/bandwidth_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: netlog_viewer/bandwidth_view.html
diff --git a/netlog_viewer/bandwidth_view.html b/netlog_viewer/bandwidth_view.html
new file mode 100644
index 0000000000000000000000000000000000000000..89a9e108525d1b54424695438e778abd24540c81
--- /dev/null
+++ b/netlog_viewer/bandwidth_view.html
@@ -0,0 +1,58 @@
+<!-- Bandwidth info -->
+<style>
+.data-reduction-proxy-view-events-details {
+ background-color: rgb(220,220,220);
+}
+table.borderless-table,
+.borderless-table th,
+.borderless-table td {
+ border: 0px;
+ padding-left: 4px;
+ padding-right: 4px;
+}
+</style>
+<div id=bandwidth-view-tab-content class=content-box>
+ <h2>Data Reduction Proxy Status</h2>
+ <ul id=data-reduction-proxy-view-status>
+ <li>Status: <span id="data-reduction-proxy-enabled"></span></li>
+ <li>Proxy configuration: <span id="data-reduction-proxy-config"></span></li>
+ <li>Probe status: <span id="data-reduction-proxy-probe-status"></span></li>
+ <li id="data-reduction-proxy-bypass-state-container">Bypass details:
+ <span id="data-reduction-proxy-bypass-state-details"></span></li>
+ </ul>
+ <a href="#proxy">View current proxy configuration</a>
+
+ <h4>Recent events</h4>
+ <div id=data-reduction-proxy-view-events-content>
+ <table class="styled-table">
+ <thead>
+ <tr>
+ <th>Time</th>
+ <th>Action</th>
+ </tr>
+ <tr>
+ <th colspan=2>Details</th>
+ </tr>
+ </thead>
+ <tbody id=data-reduction-proxy-view-events-tbody>
+ </tbody>
+ </table>
+ </div>
+ <h4>Bandwidth Savings</h4>
+ <table class="styled-table" id="bandwidth-stats-table">
+ <thead>
+ <tr>
+ <th></th>
+ <th>Session</th>
+ <th>Total</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr jsselect="rows">
+ <td jscontent="title"></td>
+ <td jscontent="sessionValue"></td>
+ <td jscontent="historicValue"></td>
+ </tr>
+ </tbody>
+ </table>
+</div>
« no previous file with comments | « netlog_viewer/assert.js ('k') | netlog_viewer/bandwidth_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698