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