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 <title id="title">Remoting Session</title> | 10 <title>Chromoting Session</title> |
11 <link rel="stylesheet" type="text/css" href="main.css" /> | 11 <link rel="shortcut icon" href="chromoting128.png" /> |
12 <script type="text/javascript" src="oauth2.js"></script> | 12 <link rel="stylesheet" href="main.css" /> |
13 <script type="text/javascript" src="remoting_session.js"></script> | 13 <link rel="stylesheet" href="remoting_session.css" /> |
| 14 <script src="oauth2.js"></script> |
| 15 <script src="remoting_session.js"></script> |
14 </head> | 16 </head> |
15 <body class="remoting_body" onload="init();"> | 17 <body id="session-body"> |
16 <div id="status_msg_div"> | 18 <div id="session-controls"> |
17 <span id="status_msg" class="status_msg">Initializing...</span> | 19 <form id="session-buttons"> |
18 <input type="button" value="Scale to fit" class="scale_to_fit_toggle" | 20 <input id="scale-to-fit-toggle" type="button" value="Scale to fit" |
19 id="scale_to_fit_toggle" onclick="toggleScaleToFit();"/> | 21 onclick="toggleScaleToFit();"/> |
20 <input type="button" value="Show Debug Log" class="debug_log_toggle" | 22 <input id="debug-log-toggle" type="button" value="Show Debug Log" |
21 id="debug_log_toggle" onclick="toggleDebugLog();"/> | 23 onclick="toggleDebugLog(); return false;"/> |
| 24 </form> |
| 25 <span id="status-msg">Initializing...</span> |
22 </div> | 26 </div> |
23 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> | 27 <div id="session-controls-padding"> |
| 28 </div> |
| 29 <div id="plugin-scroll-panel"> |
24 <embed name="remoting" id="remoting" | 30 <embed name="remoting" id="remoting" |
25 src="about://none" type="pepper-application/x-chromoting"> | 31 src="about://none" type="pepper-application/x-chromoting"> |
26 </div> | 32 </div> |
27 <div id="debug_log" class="debug_log"> | 33 <div id="debug-log"> |
28 </div> | 34 </div> |
29 </body> | 35 </body> |
30 </html> | 36 </html> |
OLD | NEW |