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

Unified Diff: remoting/webapp/me2mom/host_table_entry.js

Issue 8782001: Refactored HostList to better support bookmarking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge bug. Created 9 years 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 | « remoting/webapp/me2mom/host_list.js ('k') | remoting/webapp/me2mom/remoting.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/me2mom/host_table_entry.js
diff --git a/remoting/webapp/me2mom/host_table_entry.js b/remoting/webapp/me2mom/host_table_entry.js
index 22bde6c9e07086a427bbd60fef9bdedac3159f65..69efdc4e8813ef971384696a1d401484f72b6396 100644
--- a/remoting/webapp/me2mom/host_table_entry.js
+++ b/remoting/webapp/me2mom/host_table_entry.js
@@ -85,10 +85,7 @@ remoting.HostTableEntry.prototype.init = function(host, onRename, onDelete) {
var hostStatus = document.createElement('td');
if (host.status == 'ONLINE') {
var hostUrl = chrome.extension.getURL('choice.html') +
- '?mode=me2me' +
- '&hostJid=' + encodeURIComponent(host.jabberId) +
- '&hostPublicKey=' + encodeURIComponent(host.publicKey) +
- '&hostName=' + encodeURIComponent(host.hostName);
+ '?mode=me2me&hostId=' + encodeURIComponent(host.hostId);
var connectButton = document.createElement('button');
connectButton.setAttribute('class', 'mode-select-button');
connectButton.setAttribute('type', 'button');
« no previous file with comments | « remoting/webapp/me2mom/host_list.js ('k') | remoting/webapp/me2mom/remoting.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698