| Index: chrome/browser/resources/net_internals/index.html
|
| ===================================================================
|
| --- chrome/browser/resources/net_internals/index.html (revision 43515)
|
| +++ chrome/browser/resources/net_internals/index.html (working copy)
|
| @@ -18,6 +18,7 @@
|
| <script src="timelineviewpainter.js"></script>
|
| <script src="logviewpainter.js"></script>
|
| <script src="loggrouper.js"></script>
|
| + <script src="proxyview.js"></script>
|
| </head>
|
| <body onload="onLoaded()">
|
| <!-- Tab switcher for main categories. -->
|
| @@ -31,8 +32,27 @@
|
| </ul>
|
| <div style="clear: both;"></div>
|
| </div>
|
| + <!-- Proxy info -->
|
| + <div id=proxyTabContent>
|
| + <h4>
|
| + Current proxy settings
|
| + <input type=button value="Reload settings" id=proxyReloadSettings />
|
| + </h4>
|
| + <pre id=proxyCurrentConfig></pre>
|
| +
|
| + <h4>
|
| + Proxies which have failed recently, and are marked as bad
|
| + <input type=button value="Clear bad proxies" id=clearBadProxies />
|
| + </h4>
|
| + <table border=1>
|
| + <thead>
|
| + <th>Bad proxy server</th>
|
| + <th>Time for next retry</th>
|
| + </thead>
|
| + <tbody id=badProxiesTableBody></tbody>
|
| + </table>
|
| + </div>
|
| <!-- Sections TODO -->
|
| - <div id=proxyTabContent>TODO: display proxy information (PAC error log, initialization log, current settings.)</div>
|
| <div id=dnsTabContent>TODO: display dns information (outstanding jobs, host cache).</div>
|
| <div id=socketsTabContent>TODO: display socket information (outstanding connect jobs)</div>
|
| <div id=httpCacheTabContent>TODO: display http cache information (disk cache navigator)</div>
|
|
|