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

Side by Side Diff: chrome/browser/resources/net_internals/dns-view.html

Issue 7531005: Rename the net_internals file names to include hyphens. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add some missing files Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!-- Host resolver info -->
2 <div id=dnsTabContent>
3 <h4>Host resolver</h4>
4 <ul>
5 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_REQUEST%20type:HOST_RESOLVER_ IMPL_JOB%20is:active'>View pending lookups</a></li>
6 <li>Default address family: <span id=hostResolverDefaultFamily></span>
7 <span id=hostResolverIPv6Disabled class=warningText style="display: none;" >
8 (IPv6 disabled)
9 <input type=button value="Enable IPv6" id=hostResolverEnableIPv6 />
10 </span>
11 </li>
12 </ul>
13
14 <h4>
15 Host resolver cache
16 <input type=button value="Clear host cache" id=clearHostResolverCache class= "hideOnLoadLog" />
17 </h4>
18 <ul>
19 <li>Capacity: <span id=hostResolverCacheCapacity></span></li>
20 <li>Time to live (ms) for success entries:
21 <span id=hostResolverCacheTTLSuccess></span></li>
22 <li>Time to live (ms) for failure entries:
23 <span id=hostResolverCacheTTLFailure></span></li>
24 </ul>
25
26 <table class="styledTable">
27 <thead>
28 <tr>
29 <th>Hostname</th>
30 <th>Family</th>
31 <th>Addresses</th>
32 <th>Expires</th>
33 </tr>
34 </thead>
35 <tbody id=hostResolverCacheTbody>
36 </tbody>
37 </table>
38 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/detailsview.js ('k') | chrome/browser/resources/net_internals/dns_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698