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

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

Issue 1607004: Add the proxy information to the new net internals page. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Max the URL work in presence of '#' Created 10 years, 9 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 | « chrome/browser/dom_ui/net_internals_ui.cc ('k') | chrome/browser/resources/net_internals/main.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « chrome/browser/dom_ui/net_internals_ui.cc ('k') | chrome/browser/resources/net_internals/main.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698