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_session.js"></script> | 19 <script src="client_session.js"></script> |
19 <script src="debug_log.js"></script> | 20 <script src="debug_log.js"></script> |
| 21 <script src="host_screen.js"></script> |
| 22 <script src="host_session.js"></script> |
20 <script src="l10n.js"></script> | 23 <script src="l10n.js"></script> |
| 24 <script src="modal.js"></script> |
21 <script src="oauth2.js"></script> | 25 <script src="oauth2.js"></script> |
22 <script src="plugin_settings.js"></script> | 26 <script src="plugin_settings.js"></script> |
23 <script src="remoting.js"></script> | 27 <script src="remoting.js"></script> |
| 28 <script src="util.js"></script> |
24 <script src="xhr.js"></script> | 29 <script src="xhr.js"></script> |
25 <script src="wcs.js"></script> | 30 <script src="wcs.js"></script> |
26 <script src="wcs_loader.js"></script> | 31 <script src="wcs_loader.js"></script> |
27 <title i18n-content="PRODUCT_NAME"></title> | 32 <title i18n-content="PRODUCT_NAME"></title> |
28 </head> | 33 </head> |
29 | 34 |
30 <body onBeforeUnload="return remoting.promptClose();" | 35 <body onBeforeUnload="return remoting.promptClose();" |
31 onLoad="remoting.init();" | 36 onLoad="remoting.init();" |
32 onResize="remoting.onResize();" | 37 onResize="remoting.onResize();" |
33 onUnload="remoting.disconnect();"> | 38 onUnload="remoting.disconnect();"> |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 | 274 |
270 <section id="debug-log" dir="ltr" hidden> | 275 <section id="debug-log" dir="ltr" hidden> |
271 <div id="statistics"> | 276 <div id="statistics"> |
272 </div> | 277 </div> |
273 <div id="debug-messages"> | 278 <div id="debug-messages"> |
274 </div> | 279 </div> |
275 </section> <!-- debug-log --> | 280 </section> <!-- debug-log --> |
276 | 281 |
277 </body> | 282 </body> |
278 </html> | 283 </html> |
OLD | NEW |