Move Webstore URL concepts to //extensions and out
[chromium-blink-merge.git] / chrome / browser / resources / net_export / net_export.html
blobabe55783f3bf172116eb16b316d1330a0a142bfb
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="net_export.css">
12 </head>
13 <body>
14 <h2>NetLog Export</h2>
15 <div id="net-export-main">
16 <div>
17 <label>
18 <input id="export-view-private-data-toggle"
19 type="checkbox" checked disabled>
20 Strip private information (cookies and credentials)
21 </label>
22 </div>
23 <div>
24 <button id="export-view-start-data" disabled>
25 Start Logging to Disk
26 <div class="warning" id="export-view-deletes-log-text" hidden>
27 Deletes old log
28 </div>
29 </button>
30 </div>
31 <div>
32 <button id="export-view-stop-data" disabled>Stop Logging</button>
33 </div>
34 <div>
35 <button id="export-view-send-data" disabled>
36 Email Log
37 <div class="warning" id="export-view-private-data-text" hidden>
38 Log contains private information
39 </div>
40 <div class="warning" id="export-view-send-old-log-text" hidden>
41 Log file from previous session
42 </div>
43 </button>
44 </div>
45 <pre id="export-view-file-path-text"></pre>
46 <p>
47 <b>INSTRUCTIONS</b>: Start logging, reproduce the problem,
48 and then stop logging. Make sure to send the email before
49 starting to log again. Otherwise, the log will be deleted.
50 </p>
51 <p>
52 Logs can be loaded in
53 <a href="chrome://net-internals" target="_blank">net-internals</a>
54 of desktop Chrome.
55 </p>
56 <p>
57 <span class="warning">WARNING</span>: Logs contain a list of sites visited
58 from when logging started to when logging stopped. They may also contain
59 general network configuration information, such as DNS and proxy
60 configuration. If private information is not stripped, the logs also
61 contain cookies and credentials.
62 </p>
63 </div>
64 </body>
65 </html>