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

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

Issue 1560025: Initialize the new net internals page using the passively collected log entri... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add missing unittest file Created 10 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <!-- 2 <!--
3 Copyright (c) 2010 The Chromium Authors. All rights reserved. 3 Copyright (c) 2010 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <head> 7 <head>
8 <link tyle="text/css" rel="stylesheet" href="main.css" /> 8 <link tyle="text/css" rel="stylesheet" href="main.css" />
9 <script src="util.js"></script> 9 <script src="util.js"></script>
10 <script src="view.js"></script> 10 <script src="view.js"></script>
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 <ul> 64 <ul>
65 <li>Capacity: <span id=hostResolverCacheCapacity></span></li> 65 <li>Capacity: <span id=hostResolverCacheCapacity></span></li>
66 <li>Time to live (ms) for success entries: 66 <li>Time to live (ms) for success entries:
67 <span id=hostResolverCacheTTLSuccess></span></li> 67 <span id=hostResolverCacheTTLSuccess></span></li>
68 <li>Time to live (ms) for failure entries: 68 <li>Time to live (ms) for failure entries:
69 <span id=hostResolverCacheTTLFailure></span></li> 69 <span id=hostResolverCacheTTLFailure></span></li>
70 </ul> 70 </ul>
71 71
72 <table border=1> 72 <table border=1>
73 <thead> 73 <thead>
74 <th>Hostname</th> 74 <tr>
75 <th>Family</th> 75 <th>Hostname</th>
76 <th>Addresses</th> 76 <th>Family</th>
77 <th>Expires</th> 77 <th>Addresses</th>
78 <th>Expires</th>
79 </tr>
78 </thead> 80 </thead>
79 <tbody id=hostResolverCacheTbody> 81 <tbody id=hostResolverCacheTbody>
80 </tbody> 82 </tbody>
81 </table> 83 </table>
82 </div> 84 </div>
83 <!-- Sections TODO --> 85 <!-- Sections TODO -->
84 <div id=socketsTabContent>TODO: display socket information (outstanding conn ect jobs)</div> 86 <div id=socketsTabContent>TODO: display socket information (outstanding conn ect jobs)</div>
85 <div id=httpCacheTabContent>TODO: display http cache information (disk cache navigator)</div> 87 <div id=httpCacheTabContent>TODO: display http cache information (disk cache navigator)</div>
86 88
87 <!-- ================= Requests view =================== --> 89 <!-- ================= Requests view =================== -->
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 <td class=tabSwitcherSpacer>&nbsp;</td> 128 <td class=tabSwitcherSpacer>&nbsp;</td>
127 <th id=detailsTimelineTab>Timeline</th> 129 <th id=detailsTimelineTab>Timeline</th>
128 </tr> 130 </tr>
129 </table> 131 </table>
130 <div class=tabSwitcherLine></div> 132 <div class=tabSwitcherLine></div>
131 </div> 133 </div>
132 <div id=detailsLogBox></div> 134 <div id=detailsLogBox></div>
133 <div id=detailsTimelineBox></div> 135 <div id=detailsTimelineBox></div>
134 </body> 136 </body>
135 </html> 137 </html>
OLDNEW
« no previous file with comments | « chrome/browser/net/view_net_internals_job_factory.cc ('k') | chrome/browser/resources/net_internals/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698