| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <!-- | 3 <!-- |
| 4 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 <head i18n-values="dir:textdirection;"> | 8 <head i18n-values="dir:textdirection;"> |
| 9 <include src="../content_security_policy.html"/> | 9 <include src="../content_security_policy.html"/> |
| 10 <link rel="stylesheet" href="main.css"> | 10 <link rel="stylesheet" href="main.css"> |
| 11 <link rel="stylesheet" href="tab_switcher_view.css"> | 11 <link rel="stylesheet" href="tab_switcher_view.css"> |
| 12 <script src="chrome://resources/js/util.js"></script> | 12 <script src="chrome://resources/js/util.js"></script> |
| 13 <script src="chrome://resources/js/cr.js"></script> | 13 <script src="chrome://resources/js/cr.js"></script> |
| 14 <script src="chrome://net-internals/index.js"></script> | 14 <script src="chrome://net-internals/index.js"></script> |
| 15 <script src="chrome://net-internals/strings.js"></script> | 15 <script src="chrome://net-internals/strings.js"></script> |
| 16 </head> | 16 </head> |
| 17 <body id=dataViewDropTarget> | 17 <body id=dataViewDropTarget> |
| 18 | 18 |
| 19 <div id=statusViewId> | 19 <div id=statusViewId> |
| 20 <!-- We use a different status bar when in capture mode vs file mode --> | 20 <!-- We use a different status bar when in capture mode vs file mode --> |
| 21 <div id=statusViewForCapture> | 21 <div id=statusViewForCapture> |
| 22 <!-- TODO(eroman): Move the actively captured events count to here. --> | 22 Recording network events... |
| 23 Recording... | |
| 24 </div> | 23 </div> |
| 25 | 24 |
| 26 <div id=statusViewForFile style="display:none"> | 25 <div id=statusViewForFile style="display:none"> |
| 27 Displaying log file (<span id='statusViewDumpFileName'></span>) | 26 Displaying log file (<span id='statusViewDumpFileName'></span>) |
| 28 </div> | 27 </div> |
| 29 </div> | 28 </div> |
| 30 | 29 |
| 31 <include src="category_tabs.html"/> | 30 <include src="category_tabs.html"/> |
| 32 <include src="proxy_view.html"/> | 31 <include src="proxy_view.html"/> |
| 33 <include src="dns_view.html"/> | 32 <include src="dns_view.html"/> |
| 34 <include src="sockets_view.html"/> | 33 <include src="sockets_view.html"/> |
| 35 <include src="spdy_view.html"/> | 34 <include src="spdy_view.html"/> |
| 36 <include src="http_cache_view.html"/> | 35 <include src="http_cache_view.html"/> |
| 37 <include src="http_throttling_view.html"/> | 36 <include src="http_throttling_view.html"/> |
| 38 <include src="prerender_view.html"/> | 37 <include src="prerender_view.html"/> |
| 39 <include src="service_providers_view.html"/> | 38 <include src="service_providers_view.html"/> |
| 40 <include src="data_view.html"/> | 39 <include src="import_view.html"/> |
| 40 <include src="export_view.html"/> |
| 41 <include src="capture_view.html"/> |
| 41 <include src="test_view.html"/> | 42 <include src="test_view.html"/> |
| 42 <include src="hsts_view.html"/> | 43 <include src="hsts_view.html"/> |
| 43 <include src="events_view.html"/> | 44 <include src="events_view.html"/> |
| 44 <include src="logs_view.html"/> | 45 <include src="logs_view.html"/> |
| 45 | 46 |
| 46 <script src="chrome://resources/js/i18n_template.js"></script> | 47 <script src="chrome://resources/js/i18n_template.js"></script> |
| 47 <script src="chrome://resources/js/i18n_process.js"></script> | 48 <script src="chrome://resources/js/i18n_process.js"></script> |
| 48 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 49 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 49 </body> | 50 </body> |
| 50 </html> | 51 </html> |
| OLD | NEW |