| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2012 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 class="scrollable full-height"> | 8 <html class="scrollable full-height"> |
| 9 <head> | 9 <head> |
| 10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
| 11 <link rel="icon" type="image/png" href="chromoting16.webp"> | 11 <link rel="icon" type="image/png" href="chromoting16.webp"> |
| 12 <link rel="stylesheet" href="open_sans.css"> | 12 <link rel="stylesheet" href="open_sans.css"> |
| 13 <link rel="stylesheet" href="connection_stats.css"> | 13 <link rel="stylesheet" href="connection_stats.css"> |
| 14 <link rel="stylesheet" href="connection_history.css"> | 14 <link rel="stylesheet" href="connection_history.css"> |
| 15 <link rel="stylesheet" href="main.css"> | 15 <link rel="stylesheet" href="main.css"> |
| 16 <link rel="stylesheet" href="menu_button.css"> | 16 <link rel="stylesheet" href="menu_button.css"> |
| 17 <link rel="stylesheet" href="toolbar.css"> | 17 <link rel="stylesheet" href="toolbar.css"> |
| 18 <script src="butter_bar.js"></script> | 18 <script src="butter_bar.js"></script> |
| 19 <script src="client_plugin.js"></script> | 19 <script src="client_plugin.js"></script> |
| 20 <script src="client_plugin_async.js"></script> | |
| 21 <script src="client_screen.js"></script> | 20 <script src="client_screen.js"></script> |
| 22 <script src="client_session.js"></script> | 21 <script src="client_session.js"></script> |
| 23 <script src="clipboard.js"></script> | 22 <script src="clipboard.js"></script> |
| 24 <script src="connection_history.js"></script> | 23 <script src="connection_history.js"></script> |
| 25 <script src="connection_stats.js"></script> | 24 <script src="connection_stats.js"></script> |
| 26 <script src="error.js"></script> | 25 <script src="error.js"></script> |
| 27 <script src="event_handlers.js"></script> | 26 <script src="event_handlers.js"></script> |
| 28 <script src="format_iq.js"></script> | 27 <script src="format_iq.js"></script> |
| 29 <script src="host.js"></script> | 28 <script src="host.js"></script> |
| 30 <script src="host_controller.js"></script> | 29 <script src="host_controller.js"></script> |
| (...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 <div id="client-plugin-container"></div> | 788 <div id="client-plugin-container"></div> |
| 790 </div> | 789 </div> |
| 791 </div> | 790 </div> |
| 792 </div> <!-- session-mode --> | 791 </div> <!-- session-mode --> |
| 793 | 792 |
| 794 <div id="statistics" dir="ltr" class="selectable" hidden> | 793 <div id="statistics" dir="ltr" class="selectable" hidden> |
| 795 </div> <!-- statistics --> | 794 </div> <!-- statistics --> |
| 796 | 795 |
| 797 </body> | 796 </body> |
| 798 </html> | 797 </html> |
| OLD | NEW |