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> |