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

Side by Side Diff: netlog_viewer/netlog_viewer/dns_view.html

Issue 3011363002: Apply Chromium changes up to commit 0036296a1128ac9cbefeaff51c8df831ec421c36 (Closed)
Patch Set: address comments Created 3 years, 3 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 | « netlog_viewer/netlog_viewer/details_view.js ('k') | netlog_viewer/netlog_viewer/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 <dom-module id="dns-view"> 1 <dom-module id="dns-view">
2 <template> 2 <template>
3 <div id=dns-view-tab-content class=content-box> 3 <div id=dns-view-tab-content class=content-box>
4 <ul style='margin-top: 0'> 4 <ul style='margin-top: 0'>
5 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pen ding lookups</a></li> 5 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pen ding lookups</a></li>
6 </ul> 6 </ul>
7 7
8 <div> 8 <div>
9 <h4>Async DNS Configuration</h4> 9 <h4>Async DNS Configuration</h4>
10 <ul> 10 <ul>
(...skipping 11 matching lines...) Expand all
22 <h4> 22 <h4>
23 Host resolver cache 23 Host resolver cache
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>
47 </template> 50 </template>
48 <script> 51 <script>
49 Polymer({ 52 Polymer({
50 is: 'dns-view', 53 is: 'dns-view',
51 }); 54 });
52 </script> 55 </script>
53 </dom-module> 56 </dom-module>
OLDNEW
« no previous file with comments | « netlog_viewer/netlog_viewer/details_view.js ('k') | netlog_viewer/netlog_viewer/dns_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698