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

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

Issue 1593009: Add extra views to the new net internals page. This adds tabs along the top f... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' 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>
10 <script src="view.js"></script>
11 <script src="tabswitcherview.js"></script>
9 <script src="main.js"></script> 12 <script src="main.js"></script>
10 <script src="util.js"></script>
11 <script src="requestsview.js"></script> 13 <script src="requestsview.js"></script>
12 <script src="detailsview.js"></script> 14 <script src="detailsview.js"></script>
13 <script src="sourceentry.js"></script> 15 <script src="sourceentry.js"></script>
14 <script src="layoutmanager.js"></script> 16 <script src="resizableverticalsplitview.js"></script>
17 <script src="topmidbottomview.js"></script>
15 <script src="timelineviewpainter.js"></script> 18 <script src="timelineviewpainter.js"></script>
16 <script src="logviewpainter.js"></script> 19 <script src="logviewpainter.js"></script>
17 <script src="loggrouper.js"></script> 20 <script src="loggrouper.js"></script>
18 </head> 21 </head>
19 <body onload="onLoaded()"> 22 <body onload="onLoaded()">
23 <!-- Tab switcher for main categories. -->
24 <div id=categoryTabHandles>
25 <ul>
26 <li><a href="#" id=proxyTab>Proxy</a></li>
27 <li><a href="#" id=requestsTab>Requests</a></li>
28 <li><a href="#" id=dnsTab>DNS</a></li>
29 <li><a href="#" id=socketsTab>Sockets</a></li>
30 <li><a href="#" id=httpCacheTab>HTTP Cache</a></li>
31 </ul>
32 <div style="clear: both;"></div>
33 </div>
34 <!-- Sections TODO -->
35 <div id=proxyTabContent>TODO: display proxy information (PAC error log, init ialization log, current settings.)</div>
36 <div id=dnsTabContent>TODO: display dns information (outstanding jobs, host cache).</div>
37 <div id=socketsTabContent>TODO: display socket information (outstanding conn ect jobs)</div>
38 <div id=httpCacheTabContent>TODO: display http cache information (disk cache navigator)</div>
39
40 <!-- ================= Requests view =================== -->
41
20 <!-- Filter Box: This the top bar which contains the search box. --> 42 <!-- Filter Box: This the top bar which contains the search box. -->
21 <div id=filterBox> 43 <div id=filterBox>
22 <table width=100% height=100%> 44 <table width=100%>
23 <tr> 45 <tr>
24 <td width=1%>Filter:</td> 46 <td width=1%>Filter:</td>
25 <td width=98%><input type="search" incremental id=filterInput /></td> 47 <td width=98%><input type="search" incremental id=filterInput /></td>
26 <td width=1% id=filterCount>(1 of 34)</td> 48 <td width=1% id=filterCount>(1 of 34)</td>
27 </tr> 49 </tr>
28 </table> 50 </table>
29 </div> 51 </div>
30 <!-- Requests Box: This the panel on the left which lists the requests --> 52 <!-- Requests Box: This the panel on the left which lists the requests -->
31 <div id=requestsBox> 53 <div id=requestsBox>
32 <table id=requestsListTable cellspacing=0 cellpadding=0> 54 <table id=requestsListTable cellspacing=0 cellpadding=0 width=100%>
33 <thead> 55 <thead>
34 <tr> 56 <tr>
35 <td><input type=checkbox id=selectAll /></td> 57 <td><input type=checkbox id=selectAll /></td>
36 <td>ID</td> 58 <td>ID</td>
37 <td>Source</td> 59 <td>Source</td>
38 <td>URL</td> 60 <td width=99%>URL</td>
39 </tr> 61 </tr>
40 </thead> 62 </thead>
41 <!-- Requests table body: This is where request rows go into --> 63 <!-- Requests table body: This is where request rows go into -->
42 <tbody id=requestsListTableBody></tbody> 64 <tbody id=requestsListTableBody></tbody>
43 </table> 65 </table>
44 </div> 66 </div>
45 <!-- Action Box: This is a button bar along the bottom --> 67 <!-- Action Box: This is a button bar along the bottom -->
46 <div id=actionBox> 68 <div id=actionBox>
47 <input type=button value="Stop capturing" onclick="alert('TODO')" /> 69 <input type=button value="Stop capturing" onclick="alert('TODO')" />
48 <input type=button value="Delete selected" id=deleteSelected /> 70 <input type=button value="Delete selected" id=deleteSelected />
49 </div> 71 </div>
50 <!-- Splitter Box: This is a handle to resize the vertical divider --> 72 <!-- Splitter Box: This is a handle to resize the vertical divider -->
51 <div id=splitterBox></div> 73 <div id=splitterBox></div>
52 <!-- Details box: This is the panel on the right which shows information --> 74 <!-- Details box: This is the panel on the right which shows information -->
53 <div id=detailsBox> 75 <div id=detailsTabHandles>
54 <table class=tabSwitcher cellspacing=0> 76 <table class=tabSwitcher cellspacing=0>
55 <tr> 77 <tr>
56 <th id=detailsLogTabHandle>Log</th> 78 <th id=detailsLogTab>Log</th>
57 <td class=tabSwitcherSpacer>&nbsp;</td> 79 <td class=tabSwitcherSpacer>&nbsp;</td>
58 <th id=detailsTimelineTabHandle>Timeline</th> 80 <th id=detailsTimelineTab>Timeline</th>
59 </tr> 81 </tr>
60 </table> 82 </table>
61 <div class=tabSwitcherLine></div> 83 <div class=tabSwitcherLine></div>
62 <div id=detailsTabArea></div>
63 </div> 84 </div>
85 <div id=detailsLogBox></div>
86 <div id=detailsTimelineBox></div>
64 </body> 87 </body>
65 </html> 88 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/detailsview.js ('k') | chrome/browser/resources/net_internals/layoutmanager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698