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