OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <title id="title">New Chromoting Session</title> |
| 4 <script> |
| 5 function set_listener() { |
| 6 // This page should only get one request, and it should be |
| 7 // from the chromoting extension asking for initial connection. |
| 8 // Later we may need to create a more persistent channel for |
| 9 // better UI communication. Then, we should probably switch |
| 10 // to chrome.extension.connect(). |
| 11 chrome.extension.onRequest.addListener( |
| 12 function(request, sender, sendResponse) { |
| 13 console.log(sender.tab ? |
| 14 "from a content script:" + sender.tab.url : |
| 15 "from the extension"); |
| 16 |
| 17 // Kick off the connection. Hold on to your butts! |
| 18 var chromoting = document.getElementById('chromoting'); |
| 19 if (typeof chromoting.connect === 'function') { |
| 20 chromoting.connect(request.username, request.host_jid, request.xmpp_
auth); |
| 21 } |
| 22 |
| 23 var connect_info = "On [" + request.host_jid + "] as [" + request.user
name + "]"; |
| 24 document.getElementById("title").innerText = connect_info; |
| 25 document.getElementById("connectinfo").innerText = connect_info; |
| 26 |
| 27 // Send an empty response since we have nothing to say. |
| 28 sendResponse({}); |
| 29 }); |
| 30 } |
| 31 </script> |
| 32 </head> |
| 33 <body onload="set_listener();"> |
| 34 Why hello there! I'm your friendly Chromoting Tab. |
| 35 <div id="connectinfo"></div> |
| 36 <div id="plugin_div" style="border: black 1px dashed;"> |
| 37 <embed width="100%" height="100%" name="chromoting" id="chromoting" |
| 38 src="about://none" type="pepper-application/x-chromoting"> |
| 39 </div> |
| 40 </body> |
| 41 </html> |
OLD | NEW |