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

Unified Diff: chrome/browser/resources/net_internals/bandwidth_view.html

Issue 775773002: Add data reduction proxy debug info to net-internals#bandwidth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bengr CR updates Created 6 years 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 | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/resources/net_internals/bandwidth_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/bandwidth_view.html
diff --git a/chrome/browser/resources/net_internals/bandwidth_view.html b/chrome/browser/resources/net_internals/bandwidth_view.html
index db30bebe9a2dbf7bd79f55e1775596075a19ed33..a01d5467979c38dd538cb9e625e701a97a6df651 100644
--- a/chrome/browser/resources/net_internals/bandwidth_view.html
+++ b/chrome/browser/resources/net_internals/bandwidth_view.html
@@ -1,6 +1,44 @@
<!-- Bandwidth info -->
+<style>
+.data-reduction-proxy-view-events-details {
+ background-color: rgb(220,220,220);
+}
+</style>
<div id=bandwidth-view-tab-content class=content-box>
- <table class="styled-table">
+ <h2>Data Reduction Proxy Status</h2>
+ <ul id=data-reduction-proxy-view-status>
+ <li>Status: <span id="data-reduction-proxy-enabled"></span></li>
+ <li>Primary proxy: <span id="data-reduction-proxy-primary"></span></li>
+ <li>Secondary proxy: <span id="data-reduction-proxy-secondary"></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 jsdisplay="typeof $this == 'undefined'">Unknown</span>
+ <ul jsdisplay="typeof $this != 'undefined'">
+ <li>Origin URL: <span jscontent="origin_url"></span></li>
+ <li>Duration (seconds): <span jscontent="bypass_duration_seconds"></span></li>
+ <li>Bypass reason: <span jscontent="bypass_reason"></span></li>
+ </ul>
+ </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>
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/resources/net_internals/bandwidth_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698