| 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"> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 <script src="host_table_entry.js"></script> | 31 <script src="host_table_entry.js"></script> |
| 32 <script src="l10n.js"></script> | 32 <script src="l10n.js"></script> |
| 33 <script src="log_to_server.js"></script> | 33 <script src="log_to_server.js"></script> |
| 34 <script src="oauth2.js"></script> | 34 <script src="oauth2.js"></script> |
| 35 <script src="plugin_settings.js"></script> | 35 <script src="plugin_settings.js"></script> |
| 36 <script src="remoting.js"></script> | 36 <script src="remoting.js"></script> |
| 37 <script src="server_log_entry.js"></script> | 37 <script src="server_log_entry.js"></script> |
| 38 <script src="stats_accumulator.js"></script> | 38 <script src="stats_accumulator.js"></script> |
| 39 <script src="toolbar.js"></script> | 39 <script src="toolbar.js"></script> |
| 40 <script src="ui_mode.js"></script> | 40 <script src="ui_mode.js"></script> |
| 41 <script src="util.js"></script> | |
| 42 <script src="xhr.js"></script> | 41 <script src="xhr.js"></script> |
| 43 <script src="wcs.js"></script> | 42 <script src="wcs.js"></script> |
| 44 <script src="wcs_loader.js"></script> | 43 <script src="wcs_loader.js"></script> |
| 45 <title i18n-content="PRODUCT_NAME"></title> | 44 <title i18n-content="PRODUCT_NAME"></title> |
| 46 </head> | 45 </head> |
| 47 | 46 |
| 48 <body> | 47 <body> |
| 49 | 48 |
| 50 <!-- loading-mode is initially visible, but becomes hidden as soon as an | 49 <!-- loading-mode is initially visible, but becomes hidden as soon as an |
| 51 AppMode is selected by remoting.init. All other divs are initially | 50 AppMode is selected by remoting.init. All other divs are initially |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 <div class="arrow-down"></div> | 411 <div class="arrow-down"></div> |
| 413 </div> | 412 </div> |
| 414 </div> <!-- session-toolbar --> | 413 </div> <!-- session-toolbar --> |
| 415 </div> <!-- session-mode --> | 414 </div> <!-- session-mode --> |
| 416 | 415 |
| 417 <div id="statistics" dir="ltr" class="selectable" hidden> | 416 <div id="statistics" dir="ltr" class="selectable" hidden> |
| 418 </div> <!-- statistics --> | 417 </div> <!-- statistics --> |
| 419 | 418 |
| 420 </body> | 419 </body> |
| 421 </html> | 420 </html> |
| OLD | NEW |