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

Side by Side Diff: chrome/browser/resources/net_export/net_export.html

Issue 11828036: First cut at UI for saving net_logs data into a temporary file on (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="chrome://resources/js/util.js"></script>
6 <script src="chrome://resources/js/cr.js"></script>
7 <script src="chrome://net-export/net_export.js"></script>
8
9 <style>
James Hawkins 2013/01/29 22:48:34 Move styling to CSS file.
ramant (doing other things) 2013/01/30 02:35:42 Done.
10
11 body {
12 font-family: sans-serif;
13 font-size: 80%;
14 }
15
16 button {
17 font-size: 100%;
18 font-weight: bold;
19 }
20
21 .warning {
22 color: red;
23 }
24
25 </style>
26 </head>
27 <body>
28 <h2>NetLog Export</h2>
29 <div style="margin: 8px">
James Hawkins 2013/01/29 22:48:34 Remove inline styling (use CSS, id or class instea
ramant (doing other things) 2013/01/30 02:35:42 Done.
30 <div>
31 <button id=export-view-start-data>Start Logging to Disk</button>
32 <span class="warning">Deletes old log</span>
33 </div>
34 <div>
35 <button id=export-view-stop-data>Stop Logging</button>
36 </div>
37 <div>
38 <button id=export-view-send-data>Email Log</button>
39 </div>
40 <pre id=export-view-file-path-text></pre>
41
James Hawkins 2013/01/29 22:48:34 nit: Remove blank line.
ramant (doing other things) 2013/01/30 02:35:42 Done.
42 <ul>
43 <li><b>INSTRUCTIONS</b>: Start logging, reproduce the problem,
44 and then stop logging. Make sure to send the email before
45 starting to log again. Otherwise, the log will be deleted.
46 </li>
47 </ul>
48 <p>
49 Logs can be loaded in
50 <a href="chrome://net-internals" target="_blank">net-internals</a>
51 of desktop Chrome.
52 </p>
53 </div>
54 </body>
55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698