OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <html> | 8 <html> |
9 <head> | 9 <head> |
10 <meta charset="utf-8" /> | 10 <meta charset="utf-8" /> |
(...skipping 10 matching lines...) Expand all Loading... |
21 <script src="host_list.js"></script> | 21 <script src="host_list.js"></script> |
22 <script src="host_screen.js"></script> | 22 <script src="host_screen.js"></script> |
23 <script src="host_session.js"></script> | 23 <script src="host_session.js"></script> |
24 <script src="host_table_entry.js"></script> | 24 <script src="host_table_entry.js"></script> |
25 <script src="l10n.js"></script> | 25 <script src="l10n.js"></script> |
26 <script src="log_to_server.js"></script> | 26 <script src="log_to_server.js"></script> |
27 <script src="oauth2.js"></script> | 27 <script src="oauth2.js"></script> |
28 <script src="plugin_settings.js"></script> | 28 <script src="plugin_settings.js"></script> |
29 <script src="remoting.js"></script> | 29 <script src="remoting.js"></script> |
30 <script src="server_log_entry.js"></script> | 30 <script src="server_log_entry.js"></script> |
| 31 <script src="stats_accumulator.js"></script> |
31 <script src="toolbar.js"></script> | 32 <script src="toolbar.js"></script> |
32 <script src="ui_mode.js"></script> | 33 <script src="ui_mode.js"></script> |
33 <script src="util.js"></script> | 34 <script src="util.js"></script> |
34 <script src="xhr.js"></script> | 35 <script src="xhr.js"></script> |
35 <script src="wcs.js"></script> | 36 <script src="wcs.js"></script> |
36 <script src="wcs_loader.js"></script> | 37 <script src="wcs_loader.js"></script> |
37 <title i18n-content="PRODUCT_NAME"></title> | 38 <title i18n-content="PRODUCT_NAME"></title> |
38 </head> | 39 </head> |
39 | 40 |
40 <body onBeforeUnload="return remoting.promptClose();" | 41 <body onBeforeUnload="return remoting.promptClose();" |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 | 292 |
292 <section id="debug-log" dir="ltr" hidden> | 293 <section id="debug-log" dir="ltr" hidden> |
293 <div id="statistics"> | 294 <div id="statistics"> |
294 </div> | 295 </div> |
295 <div id="debug-messages"> | 296 <div id="debug-messages"> |
296 </div> | 297 </div> |
297 </section> <!-- debug-log --> | 298 </section> <!-- debug-log --> |
298 | 299 |
299 </body> | 300 </body> |
300 </html> | 301 </html> |
OLD | NEW |