OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 <if expr="is_android"> | |
6 <meta name="viewport" content="width=device-width"> | |
7 </if> | |
8 <script src="chrome://resources/js/util.js"></script> | |
9 <script src="chrome://resources/js/cr.js"></script> | |
10 <script src="chrome://net-export/net_export.js"></script> | |
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
12 <link rel="stylesheet" href="net_export.css"> | |
13 </head> | |
14 <body> | |
15 <h2>Network Log Export</h2> | |
16 <div id="net-export-main"> | |
17 <div> | |
18 <button id="export-view-start-data" disabled> | |
19 Start Logging to Disk | |
20 <div class="warning" id="export-view-deletes-log-text" hidden> | |
21 Deletes old log | |
22 </div> | |
23 </button> | |
24 </div> | |
25 <div> | |
26 <button id="export-view-stop-data" disabled>Stop Logging</button> | |
27 </div> | |
28 <div> | |
29 <button id="export-view-send-data" disabled> | |
30 Email Log | |
31 <div class="warning" id="export-view-private-data-text" hidden> | |
32 Log contains private information | |
33 </div> | |
34 <div class="warning" id="export-view-send-old-log-text" hidden> | |
35 Log file from previous session | |
36 </div> | |
37 </button> | |
38 </div> | |
39 <p> | |
40 <b>INSTRUCTIONS</b>: Start logging, reproduce the problem, | |
41 and then stop logging. Make sure to send the email before | |
42 starting to log again. Otherwise, the log will be deleted. | |
43 </p> | |
44 <p> | |
45 Logs can be loaded in | |
46 <a href="chrome://net-internals" target="_blank">net-internals</a> | |
47 of desktop Chrome. | |
48 </p> | |
49 <p> | |
50 <b><span class="warning">WARNING</span></b>: Logs contain a list of sites | |
51 visited from when logging started to when logging stopped. They may also | |
52 contain general network configuration information, such as DNS and proxy | |
53 configuration. If private information is not stripped, the logs also | |
54 contain cookies and credentials. | |
55 </p> | |
56 <p> | |
57 <b>ADVANCED</b>: | |
58 <span class="warning">This section should normally be left alone.</span> | |
59 <div class="radio-button-div"> | |
60 <label> | |
61 <input id="export-view-strip-private-data-button" type="radio" | |
62 name="log-mode" value="STRIP_PRIVATE_DATA" checked disabled> | |
63 Strip private information | |
64 </label> | |
65 </div> | |
66 <div class="radio-button-div"> | |
67 <label> | |
68 <input id="export-view-include-private-data-button" type="radio" | |
69 name="log-mode" value="NORMAL" disabled> | |
70 Include cookies and credentials | |
71 </label> | |
72 </div> | |
73 <div class="radio-button-div"> | |
74 <label> | |
75 <input id="export-view-log-bytes-button" type="radio" | |
76 name="log-mode" value="LOG_BYTES" disabled> | |
77 Include raw bytes (will include cookies and credentials) | |
78 </label> | |
79 </div> | |
80 </p> | |
81 </div> | |
82 <pre id="export-view-file-path-text"></pre> | |
83 </body> | |
84 </html> | |
OLD | NEW |