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

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

Issue 2773023003: Add more data to net-internals view of DNS cache (Closed)
Patch Set: undefined -> empty string Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/dns_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- Host resolver info --> 1 <!-- Host resolver info -->
2 <div id=dns-view-tab-content class=content-box> 2 <div id=dns-view-tab-content class=content-box>
3 <ul style='margin-top: 0'> 3 <ul style='margin-top: 0'>
4 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pending lookups</a></li> 4 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pending lookups</a></li>
5 </ul> 5 </ul>
6 6
7 <div> 7 <div>
8 <h4>Async DNS Configuration</h4> 8 <h4>Async DNS Configuration</h4>
9 <ul> 9 <ul>
10 <li>Internal DNS client enabled: 10 <li>Internal DNS client enabled:
(...skipping 11 matching lines...) Expand all
22 Host resolver cache 22 Host resolver cache
23 <input type=button value="Clear host cache" id=dns-view-clear-cache class="h ide-when-not-capturing"> 23 <input type=button value="Clear host cache" id=dns-view-clear-cache class="h ide-when-not-capturing">
24 </h4> 24 </h4>
25 <ul> 25 <ul>
26 <li>Capacity: <span id=dns-view-cache-capacity></span></li> 26 <li>Capacity: <span id=dns-view-cache-capacity></span></li>
27 </ul> 27 </ul>
28 <h4>Current State</h4> 28 <h4>Current State</h4>
29 <ul> 29 <ul>
30 <li>Active entries: <span id=dns-view-cache-active></span></li> 30 <li>Active entries: <span id=dns-view-cache-active></span></li>
31 <li>Expired entries: <span id=dns-view-cache-expired></span></li> 31 <li>Expired entries: <span id=dns-view-cache-expired></span></li>
32 <li>Network changes: <span id=dns-view-network-changes></span></li>
32 </ul> 33 </ul>
33 34
34 <table class="styled-table"> 35 <table class="styled-table">
35 <thead> 36 <thead>
36 <tr> 37 <tr>
37 <th>Hostname</th> 38 <th>Hostname</th>
38 <th>Family</th> 39 <th>Family</th>
39 <th>Addresses</th> 40 <th>Addresses</th>
41 <th>TTL</th>
40 <th>Expires</th> 42 <th>Expires</th>
43 <th>Network changes</th>
41 </tr> 44 </tr>
42 </thead> 45 </thead>
43 <tbody id=dns-view-cache-tbody> 46 <tbody id=dns-view-cache-tbody>
44 </tbody> 47 </tbody>
45 </table> 48 </table>
46 </div> 49 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/dns_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698