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

Side by Side Diff: chrome/browser/resources/net_internals/proxy_view.html

Issue 8896019: Refactor: Extract "InitProxyResolver" to "ProxyScriptDecider". (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: do another sync since commitbot failed... Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- Proxy info --> 1 <!-- Proxy info -->
2 2
3 <style> 3 <style>
4 4
5 #proxy-view-tab-content td, 5 #proxy-view-tab-content td,
6 #proxy-view-tab-content th { 6 #proxy-view-tab-content th {
7 font-size: 12px; 7 font-size: 12px;
8 } 8 }
9 9
10 </style> 10 </style>
11 11
12 <div id=proxy-view-tab-content> 12 <div id=proxy-view-tab-content>
13 <h4> 13 <h4>
14 Current proxy settings 14 Current proxy settings
15 <input type=button value="Re-apply settings" id=proxy-view-reload-settings c lass="hideOnLoadLog"/> 15 <input type=button value="Re-apply settings" id=proxy-view-reload-settings c lass="hideOnLoadLog"/>
16 </h4> 16 </h4>
17 17
18 <table><tr> 18 <table><tr>
19 19
20 <td valign=top> 20 <td valign=top>
21 <h3>Effective settings</h3> 21 <h3>Effective settings</h3>
22 <pre id=proxy-view-effective-settings></pre> 22 <pre id=proxy-view-effective-settings></pre>
23 </pre>
24 </td> 23 </td>
25 24
26 <td style='width: 30px'>&nbsp;</td> 25 <td style='width: 30px'>&nbsp;</td>
27 26
28 <td valign=top> 27 <td valign=top>
29 <h3>Original settings</h3> 28 <h3>Original settings</h3>
30 <pre id=proxy-view-original-settings></pre> 29 <pre id=proxy-view-original-settings></pre>
31 </td> 30 </td>
32 31
33 </tr></table> 32 </tr></table>
34 33
35 <h4>Proxy auto-config initialization</h4> 34 <h4>Proxy auto-config initialization</h4>
36 <ul> 35 <ul>
37 <li> 36 <li>
38 <a href='#events&q=type:INIT_PROXY_RESOLVER'>View all events</a> 37 <a href='#events&q=type:PROXY_SCRIPT_DECIDER'>View all events</a>
39 </li> 38 </li>
40 <li> 39 <li>
41 Latest proxy resolver event: 40 Latest proxy resolver event:
42 <pre id=proxy-view-resolver-log></pre> 41 <pre id=proxy-view-resolver-log></pre>
43 </li> 42 </li>
44 </ul> 43 </ul>
45 44
46 <h4> 45 <h4>
47 Proxies which have failed recently, and are marked as bad 46 Proxies which have failed recently, and are marked as bad
48 <input type=button value="Clear bad proxies" id=proxy-view-clear-bad-proxies class="hideOnLoadLog" /> 47 <input type=button value="Clear bad proxies" id=proxy-view-clear-bad-proxies class="hideOnLoadLog" />
49 </h4> 48 </h4>
50 <table class="styledTable"> 49 <table class="styledTable">
51 <thead> 50 <thead>
52 <tr> 51 <tr>
53 <th>Bad proxy server</th> 52 <th>Bad proxy server</th>
54 <th>Time for next retry</th> 53 <th>Time for next retry</th>
55 </tr> 54 </tr>
56 </thead> 55 </thead>
57 <tbody id=proxy-view-bad-proxies-tbody></tbody> 56 <tbody id=proxy-view-bad-proxies-tbody></tbody>
58 </table> 57 </table>
59 </div> 58 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/events_view.css ('k') | chrome/browser/resources/net_internals/proxy_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698