| 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">Chromoting Session</title> | 10 <title id="title">Chromoting Session</title> |
| 11 <link rel="stylesheet" type="text/css" href="static_files/main.css" /> | 11 <link rel="stylesheet" type="text/css" href="static_files/main.css" /> |
| 12 <script type="text/javascript"> | 12 <script type="text/javascript"> |
| 13 <!-- | 13 <!-- |
| 14 // TODO(ajwong): Total Hack. We should be able to read the URL parameters | 14 // TODO(ajwong): Total Hack. We should be able to read the URL parameters |
| 15 // from JS, and also avoid passing in the connection tokens here. | 15 // from JS, and also avoid passing in the connection tokens here. |
| 16 document.xmppAuthToken="{{xmpp_token}}"; | 16 document.talkToken="{{talk_token}}"; |
| 17 document.httpXmppProxy="{{http_xmpp_proxy}}"; | 17 document.httpXmppProxy="{{http_xmpp_proxy}}"; |
| 18 document.username="{{username}}"; | 18 document.username="{{username}}"; |
| 19 document.hostname="{{hostname}}"; | 19 document.hostname="{{hostname}}"; |
| 20 document.hostjid="{{hostjid}}"; | 20 document.hostjid="{{hostjid}}"; |
| 21 document.connectMethod="{{connect_method}}"; | 21 document.connectMethod="{{connect_method}}"; |
| 22 document.insecure="{{insecure}}"; | 22 document.insecure="{{insecure}}"; |
| 23 --> | 23 --> |
| 24 </script> | 24 </script> |
| 25 <script type="text/javascript" src="static_files/base.js"></script> | 25 <script type="text/javascript" src="static_files/base.js"></script> |
| 26 <script type="text/javascript" src="static_files/chromoting_session.js"> | 26 <script type="text/javascript" src="static_files/chromoting_session.js"> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 </td></tr></table> | 66 </td></tr></table> |
| 67 </div> | 67 </div> |
| 68 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> | 68 <div id="plugin_scroll_panel" class="plugin-scroll-panel"> |
| 69 <embed name="chromoting" id="chromoting" | 69 <embed name="chromoting" id="chromoting" |
| 70 src="about://none" type="pepper-application/x-chromoting"> | 70 src="about://none" type="pepper-application/x-chromoting"> |
| 71 </div> | 71 </div> |
| 72 <div id="debug_log" class="debug_log"> | 72 <div id="debug_log" class="debug_log"> |
| 73 </div> | 73 </div> |
| 74 </body> | 74 </body> |
| 75 </html> | 75 </html> |
| OLD | NEW |