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="full-height"> | 8 <html class="full-height"> |
9 <head> | 9 <head> |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
11 <link rel="icon" type="image/png" href="icon16.png"> | 11 <link rel="icon" type="image/png" href="icon16.png"> |
12 <link rel="stylesheet" href="ar_main.css"> | 12 <link rel="stylesheet" href="ar_main.css"> |
13 <link rel="stylesheet" href="ar_dialog.css"> | |
kelvinp
2015/05/20 01:27:31
This css file should be here in the first place.
I
| |
13 <link rel="stylesheet" href="connection_stats.css"> | 14 <link rel="stylesheet" href="connection_stats.css"> |
14 <link rel="stylesheet" href="context_menu.css"> | 15 <link rel="stylesheet" href="context_menu.css"> |
15 <link rel="stylesheet" href="main.css"> | 16 <link rel="stylesheet" href="main.css"> |
16 <link rel="stylesheet" href="menu_button.css"> | 17 <link rel="stylesheet" href="menu_button.css"> |
17 <link rel="stylesheet" href="open_sans.css"> | 18 <link rel="stylesheet" href="open_sans.css"> |
18 | 19 |
19 <meta-include type="javascript"/> | 20 <meta-include type="javascript"/> |
20 | 21 |
21 <title i18n-content="PRODUCT_NAME_APP_STREAMING"></title> | 22 <title i18n-content="PRODUCT_NAME_APP_STREAMING"></title> |
22 </head> | 23 </head> |
23 | 24 |
24 <body class="full-height"> | 25 <body class="full-height"> |
25 | 26 |
26 <div id="host-plugin-container"></div> | 27 <div id="host-plugin-container"></div> |
27 | 28 |
28 <iframe id="wcs-sandbox" src="wcs_sandbox.html" hidden></iframe> | 29 <iframe id="wcs-sandbox" src="wcs_sandbox.html" hidden></iframe> |
29 | 30 |
30 <div id="session-mode" | 31 <div id="session-mode" |
31 data-ui-mode="in-session home.client" | 32 data-ui-mode="in-session home.client" |
32 class="full-height" | 33 class="full-height" |
33 hidden> | 34 hidden> |
34 | 35 |
35 <meta-include src="webapp/base/html/client_plugin.html"/> | 36 <meta-include src="webapp/base/html/client_plugin.html"/> |
36 | 37 |
37 </div> <!-- session-mode --> | 38 </div> <!-- session-mode --> |
38 | 39 |
39 <meta-include src="webapp/app_remoting/html/context_menu.html"/> | 40 <meta-include src="webapp/app_remoting/html/context_menu.html"/> |
40 <meta-include src="webapp/app_remoting/html/idle_dialog.html"/> | 41 <meta-include src="webapp/app_remoting/html/idle_dialog.html"/> |
42 <meta-include src="webapp/base/html/connection_dropped_dialog.html"/> | |
41 | 43 |
42 <div id="statistics" dir="ltr" class="selectable" hidden> | 44 <div id="statistics" dir="ltr" class="selectable" hidden> |
43 </div> <!-- statistics --> | 45 </div> <!-- statistics --> |
44 | 46 |
45 </body> | 47 </body> |
46 </html> | 48 </html> |
OLD | NEW |