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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/client/extension/client.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/extension/chromoting_tab.html
diff --git a/remoting/client/extension/chromoting_tab.html b/remoting/client/extension/chromoting_tab.html
new file mode 100644
index 0000000000000000000000000000000000000000..dbe42a563d4dbe26534cad354b268b8f98be9c80
--- /dev/null
+++ b/remoting/client/extension/chromoting_tab.html
@@ -0,0 +1,41 @@
+<html>
+ <head>
+ <title id="title">New Chromoting Session</title>
+ <script>
+ function set_listener() {
+ // This page should only get one request, and it should be
+ // from the chromoting extension asking for initial connection.
+ // Later we may need to create a more persistent channel for
+ // better UI communication. Then, we should probably switch
+ // to chrome.extension.connect().
+ chrome.extension.onRequest.addListener(
+ function(request, sender, sendResponse) {
+ console.log(sender.tab ?
+ "from a content script:" + sender.tab.url :
+ "from the extension");
+
+ // Kick off the connection. Hold on to your butts!
+ var chromoting = document.getElementById('chromoting');
+ if (typeof chromoting.connect === 'function') {
+ chromoting.connect(request.username, request.host_jid, request.xmpp_auth);
+ }
+
+ var connect_info = "On [" + request.host_jid + "] as [" + request.username + "]";
+ document.getElementById("title").innerText = connect_info;
+ document.getElementById("connectinfo").innerText = connect_info;
+
+ // Send an empty response since we have nothing to say.
+ sendResponse({});
+ });
+ }
+ </script>
+ </head>
+ <body onload="set_listener();">
+ Why hello there! I'm your friendly Chromoting Tab.
+ <div id="connectinfo"></div>
+ <div id="plugin_div" style="border: black 1px dashed;">
+ <embed width="100%" height="100%" name="chromoting" id="chromoting"
+ src="about://none" type="pepper-application/x-chromoting">
+ </div>
+ </body>
+</html>
« 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