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> | 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=Open+Sans&v1" | 11 <link href="http://fonts.googleapis.com/css?family=Open+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="connection_stats.css"> | 14 <link rel="stylesheet" href="connection_stats.css"> |
15 <link rel="stylesheet" href="connection_history.css"> | 15 <link rel="stylesheet" href="connection_history.css"> |
16 <link rel="stylesheet" href="main.css"> | 16 <link rel="stylesheet" href="main.css"> |
17 <link rel="stylesheet" href="toolbar.css"> | 17 <link rel="stylesheet" href="toolbar.css"> |
18 <script src="ask_pin_dialog.js"></script> | 18 <script src="ask_pin_dialog.js"></script> |
19 <script src="client_plugin_async.js"></script> | 19 <script src="client_plugin_async.js"></script> |
20 <script src="client_plugin_v1.js"></script> | 20 <script src="client_plugin_v1.js"></script> |
21 <script src="client_screen.js"></script> | 21 <script src="client_screen.js"></script> |
22 <script src="client_session.js"></script> | 22 <script src="client_session.js"></script> |
| 23 <script src="clipboard.js"></script> |
23 <script src="connection_history.js"></script> | 24 <script src="connection_history.js"></script> |
24 <script src="connection_stats.js"></script> | 25 <script src="connection_stats.js"></script> |
25 <script src="daemon_plugin.js"></script> | 26 <script src="daemon_plugin.js"></script> |
26 <script src="event_handlers.js"></script> | 27 <script src="event_handlers.js"></script> |
27 <script src="format_iq.js"></script> | 28 <script src="format_iq.js"></script> |
28 <script src="host_list.js"></script> | 29 <script src="host_list.js"></script> |
29 <script src="host_screen.js"></script> | 30 <script src="host_screen.js"></script> |
30 <script src="host_session.js"></script> | 31 <script src="host_session.js"></script> |
31 <script src="host_table_entry.js"></script> | 32 <script src="host_table_entry.js"></script> |
32 <script src="l10n.js"></script> | 33 <script src="l10n.js"></script> |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 <div class="arrow-down"></div> | 434 <div class="arrow-down"></div> |
434 </div> | 435 </div> |
435 </div> <!-- session-toolbar --> | 436 </div> <!-- session-toolbar --> |
436 </div> <!-- session-mode --> | 437 </div> <!-- session-mode --> |
437 | 438 |
438 <div id="statistics" dir="ltr" class="selectable" hidden> | 439 <div id="statistics" dir="ltr" class="selectable" hidden> |
439 </div> <!-- statistics --> | 440 </div> <!-- statistics --> |
440 | 441 |
441 </body> | 442 </body> |
442 </html> | 443 </html> |
OLD | NEW |