| 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> | 21 <script src="home_screen.js"></script> |
| 22 <script src="host_list.js"></script> |
| 22 <script src="host_screen.js"></script> | 23 <script src="host_screen.js"></script> |
| 23 <script src="host_session.js"></script> | 24 <script src="host_session.js"></script> |
| 24 <script src="l10n.js"></script> | 25 <script src="l10n.js"></script> |
| 25 <script src="log_to_server.js"></script> | 26 <script src="log_to_server.js"></script> |
| 26 <script src="oauth2.js"></script> | 27 <script src="oauth2.js"></script> |
| 27 <script src="plugin_settings.js"></script> | 28 <script src="plugin_settings.js"></script> |
| 28 <script src="remoting.js"></script> | 29 <script src="remoting.js"></script> |
| 29 <script src="server_log_entry.js"></script> | 30 <script src="server_log_entry.js"></script> |
| 30 <script src="ui_mode.js"></script> | 31 <script src="ui_mode.js"></script> |
| 31 <script src="util.js"></script> | 32 <script src="util.js"></script> |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 290 |
| 290 <section id="debug-log" dir="ltr" hidden> | 291 <section id="debug-log" dir="ltr" hidden> |
| 291 <div id="statistics"> | 292 <div id="statistics"> |
| 292 </div> | 293 </div> |
| 293 <div id="debug-messages"> | 294 <div id="debug-messages"> |
| 294 </div> | 295 </div> |
| 295 </section> <!-- debug-log --> | 296 </section> <!-- debug-log --> |
| 296 | 297 |
| 297 </body> | 298 </body> |
| 298 </html> | 299 </html> |
| OLD | NEW |