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

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: Linter and rebase. 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
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 5b65f3ee5c1ddba125c49f1b0720dec300c6ed0d..974df30d13977f8d8de4dcad8d939e6e6685845e 100644
--- a/remoting/webapp/me2mom/host_table_entry.js
+++ b/remoting/webapp/me2mom/host_table_entry.js
@@ -83,10 +83,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');

Powered by Google App Engine
This is Rietveld 408576698