summaryrefslogtreecommitdiffstats
path: root/remoting/client/appengine
diff options
context:
space:
mode:
authorgarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-25 05:57:27 +0000
committergarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-25 05:57:27 +0000
commite3f3047d03c2a039a7202ef0a81f221c96773598 (patch)
tree504dc93c7bfed4700867b63d8fef45d32dd86062 /remoting/client/appengine
parent70c4776c2e87adf2594f42d240842627c54e966e (diff)
downloadchromium_src-e3f3047d03c2a039a7202ef0a81f221c96773598.zip
chromium_src-e3f3047d03c2a039a7202ef0a81f221c96773598.tar.gz
chromium_src-e3f3047d03c2a039a7202ef0a81f221c96773598.tar.bz2
Add separate nonce version of connect calls to ChromotingScriptableObject.
BUG=none TEST=manual Review URL: http://codereview.chromium.org/7042022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86573 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/client/appengine')
-rw-r--r--remoting/client/appengine/static_files/chromoting_session.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/remoting/client/appengine/static_files/chromoting_session.js b/remoting/client/appengine/static_files/chromoting_session.js
index b6960df..8b96642 100644
--- a/remoting/client/appengine/static_files/chromoting_session.js
+++ b/remoting/client/appengine/static_files/chromoting_session.js
@@ -54,8 +54,7 @@ function registerConnection() {
var clientjid = xhr.responseText;
chromoting.plugin.sendIq = sendIq;
- // TODO:(jamiewalch): Pass in the correct nonce.
- chromoting.plugin.connectSandboxed(clientjid, chromoting.hostjid);
+ chromoting.plugin.connect(chromoting.hostjid, clientjid);
// TODO(ajwong): This should just be feedIq();
window.setTimeout(feedIq, 1000);
} else {
@@ -132,9 +131,8 @@ function init() {
if (chromoting.connectMethod == "sandboxed") {
registerConnection();
} else {
- // TODO:(jamiewalch): Pass in the correct nonce.
- plugin.connect(chromoting.username, chromoting.hostjid,
- chromoting.talkToken, '');
+ plugin.connectUnsandboxed(chromoting.hostjid, chromoting.username,
+ chromoting.talkToken);
}
} else {
addToDebugLog('ERROR: chromoting plugin not loaded');