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

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

Issue 1703018: Add the ability to export the captured NetLog data to a formatted text file, ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Address mbelshe's comments Created 10 years, 7 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>
11 <script src="tabswitcherview.js"></script> 11 <script src="tabswitcherview.js"></script>
12 <script src="dataview.js"></script>
12 <script src="main.js"></script> 13 <script src="main.js"></script>
13 <script src="dnsview.js"></script> 14 <script src="dnsview.js"></script>
14 <script src="requestsview.js"></script> 15 <script src="requestsview.js"></script>
15 <script src="detailsview.js"></script> 16 <script src="detailsview.js"></script>
16 <script src="sourceentry.js"></script> 17 <script src="sourceentry.js"></script>
17 <script src="resizableverticalsplitview.js"></script> 18 <script src="resizableverticalsplitview.js"></script>
18 <script src="topmidbottomview.js"></script> 19 <script src="topmidbottomview.js"></script>
19 <script src="timelineviewpainter.js"></script> 20 <script src="timelineviewpainter.js"></script>
20 <script src="logviewpainter.js"></script> 21 <script src="logviewpainter.js"></script>
21 <script src="loggrouper.js"></script> 22 <script src="loggrouper.js"></script>
22 <script src="proxyview.js"></script> 23 <script src="proxyview.js"></script>
23 </head> 24 </head>
24 <body onload="onLoaded()"> 25 <body onload="onLoaded()">
25 <!-- Tab switcher for main categories. --> 26 <!-- Tab switcher for main categories. -->
26 <div id=categoryTabHandles> 27 <div id=categoryTabHandles>
27 <ul> 28 <ul>
28 <li><a href="#proxy" id=proxyTab>Proxy</a></li> 29 <li><a href="#proxy" id=proxyTab>Proxy</a></li>
29 <li><a href="#requests" id=requestsTab>Requests</a></li> 30 <li><a href="#requests" id=requestsTab>Requests</a></li>
30 <li><a href="#dns" id=dnsTab>DNS</a></li> 31 <li><a href="#dns" id=dnsTab>DNS</a></li>
31 <li><a href="#sockets" id=socketsTab>Sockets</a></li> 32 <li><a href="#sockets" id=socketsTab>Sockets</a></li>
32 <li><a href="#httpCache" id=httpCacheTab>HTTP Cache</a></li> 33 <li><a href="#httpCache" id=httpCacheTab>HTTP Cache</a></li>
34 <li><a href="#data" id=dataTab>Data</a></li>
33 </ul> 35 </ul>
34 <div style="clear: both;"></div> 36 <div style="clear: both;"></div>
35 </div> 37 </div>
36 <!-- Proxy info --> 38 <!-- Proxy info -->
37 <div id=proxyTabContent> 39 <div id=proxyTabContent>
38 <h4> 40 <h4>
39 Current proxy settings 41 Current proxy settings
40 <input type=button value="Reload settings" id=proxyReloadSettings /> 42 <input type=button value="Reload settings" id=proxyReloadSettings />
41 </h4> 43 </h4>
42 <pre id=proxyCurrentConfig></pre> 44 <pre id=proxyCurrentConfig></pre>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 <th>Expires</th> 80 <th>Expires</th>
79 </tr> 81 </tr>
80 </thead> 82 </thead>
81 <tbody id=hostResolverCacheTbody> 83 <tbody id=hostResolverCacheTbody>
82 </tbody> 84 </tbody>
83 </table> 85 </table>
84 </div> 86 </div>
85 <!-- Sections TODO --> 87 <!-- Sections TODO -->
86 <div id=socketsTabContent>TODO: display socket information (outstanding conn ect jobs)</div> 88 <div id=socketsTabContent>TODO: display socket information (outstanding conn ect jobs)</div>
87 <div id=httpCacheTabContent>TODO: display http cache information (disk cache navigator)</div> 89 <div id=httpCacheTabContent>TODO: display http cache information (disk cache navigator)</div>
90 <!-- Import/Export data -->
91 <div id=dataTabContent>
92 <br/>
93 <button id=exportToText><b>Click here to generate bug report data</b><b r/>(Copy paste the result and attach to bug)</button>
94 <br/>
95 <br/>
96 <button id=exportToJson>Export data to JSON</button>
97 </div>
88 98
89 <!-- ================= Requests view =================== --> 99 <!-- ================= Requests view =================== -->
90 100
91 <!-- Filter Box: This the top bar which contains the search box. --> 101 <!-- Filter Box: This the top bar which contains the search box. -->
92 <div id=filterBox> 102 <div id=filterBox>
93 <table width=100%> 103 <table width=100%>
94 <tr> 104 <tr>
95 <td width=1%>Filter:</td> 105 <td width=1%>Filter:</td>
96 <td width=98%><input type="search" incremental id=filterInput /></td> 106 <td width=98%><input type="search" incremental id=filterInput /></td>
97 <td width=1% id=filterCount>(1 of 34)</td> 107 <td width=1% id=filterCount>(1 of 34)</td>
(...skipping 30 matching lines...) Expand all
128 <td class=tabSwitcherSpacer>&nbsp;</td> 138 <td class=tabSwitcherSpacer>&nbsp;</td>
129 <th id=detailsTimelineTab>Timeline</th> 139 <th id=detailsTimelineTab>Timeline</th>
130 </tr> 140 </tr>
131 </table> 141 </table>
132 <div class=tabSwitcherLine></div> 142 <div class=tabSwitcherLine></div>
133 </div> 143 </div>
134 <div id=detailsLogBox></div> 144 <div id=detailsLogBox></div>
135 <div id=detailsTimelineBox></div> 145 <div id=detailsTimelineBox></div>
136 </body> 146 </body>
137 </html> 147 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/dataview.js ('k') | chrome/browser/resources/net_internals/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698