| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <if expr="is_android"> | 5 <if expr="is_android"> |
| 6 <meta name="viewport" content="width=device-width"> | 6 <meta name="viewport" content="width=device-width"> |
| 7 </if> | 7 </if> |
| 8 <script src="chrome://resources/js/util.js"></script> | 8 <script src="chrome://resources/js/util.js"></script> |
| 9 <script src="chrome://resources/js/cr.js"></script> | 9 <script src="chrome://resources/js/cr.js"></script> |
| 10 <script src="chrome://net-export/net_export.js"></script> | 10 <script src="chrome://net-export/net_export.js"></script> |
| 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 11 <link rel="stylesheet" href="net_export.css"> | 12 <link rel="stylesheet" href="net_export.css"> |
| 12 </head> | 13 </head> |
| 13 <body> | 14 <body> |
| 14 <h2>NetLog Export</h2> | 15 <h2>NetLog Export</h2> |
| 15 <div id="net-export-main"> | 16 <div id="net-export-main"> |
| 16 <div> | 17 <div> |
| 17 <label> | 18 <label> |
| 18 <input id="export-view-private-data-toggle" | 19 <input id="export-view-private-data-toggle" |
| 19 type="checkbox" checked disabled> | 20 type="checkbox" checked disabled> |
| 20 Strip private information (cookies and credentials) | 21 Strip private information (cookies and credentials) |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 <p> | 57 <p> |
| 57 <span class="warning">WARNING</span>: Logs contain a list of sites visited | 58 <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 from when logging started to when logging stopped. They may also contain |
| 59 general network configuration information, such as DNS and proxy | 60 general network configuration information, such as DNS and proxy |
| 60 configuration. If private information is not stripped, the logs also | 61 configuration. If private information is not stripped, the logs also |
| 61 contain cookies and credentials. | 62 contain cookies and credentials. |
| 62 </p> | 63 </p> |
| 63 </div> | 64 </div> |
| 64 </body> | 65 </body> |
| 65 </html> | 66 </html> |
| OLD | NEW |