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" /> |
11 <link href="http://fonts.googleapis.com/css?family=Droid+Sans&v1" | 11 <link href="http://fonts.googleapis.com/css?family=Droid+Sans&v1" |
12 rel="stylesheet" type="text/css"> | 12 rel="stylesheet" type="text/css"> |
13 <link rel="icon" type="image/png" href="chromoting16.png" /> | 13 <link rel="icon" type="image/png" href="chromoting16.png" /> |
14 <link rel="stylesheet" href="debug_log.css" /> | 14 <link rel="stylesheet" href="debug_log.css" /> |
15 <link rel="stylesheet" href="main.css" /> | 15 <link rel="stylesheet" href="main.css" /> |
16 <link rel="stylesheet" href="choice.css" /> | 16 <link rel="stylesheet" href="choice.css" /> |
17 <link rel="stylesheet" href="toolbar.css" /> | 17 <link rel="stylesheet" href="toolbar.css" /> |
18 <script src="client_screen.js"></script> | 18 <script src="client_screen.js"></script> |
19 <script src="client_session.js"></script> | 19 <script src="client_session.js"></script> |
20 <script src="debug_log.js"></script> | 20 <script src="debug_log.js"></script> |
21 <script src="home_screen.js"></script> | |
22 <script src="host_list.js"></script> | 21 <script src="host_list.js"></script> |
23 <script src="host_screen.js"></script> | 22 <script src="host_screen.js"></script> |
24 <script src="host_session.js"></script> | 23 <script src="host_session.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="ui_mode.js"></script> | 31 <script src="ui_mode.js"></script> |
32 <script src="util.js"></script> | 32 <script src="util.js"></script> |
33 <script src="xhr.js"></script> | 33 <script src="xhr.js"></script> |
34 <script src="wcs.js"></script> | 34 <script src="wcs.js"></script> |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 | 290 |
291 <section id="debug-log" dir="ltr" hidden> | 291 <section id="debug-log" dir="ltr" hidden> |
292 <div id="statistics"> | 292 <div id="statistics"> |
293 </div> | 293 </div> |
294 <div id="debug-messages"> | 294 <div id="debug-messages"> |
295 </div> | 295 </div> |
296 </section> <!-- debug-log --> | 296 </section> <!-- debug-log --> |
297 | 297 |
298 </body> | 298 </body> |
299 </html> | 299 </html> |
OLD | NEW |