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