Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: remoting/client/extension/chromoting_tab.html

Issue 2808104: Modify client to open up chromoting connection in a new tab. (Closed) Base URL: git://codf21.jail.google.com/chromium.git
Patch Set: rebased Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/client/extension/client.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « no previous file | remoting/client/extension/client.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698