summaryrefslogtreecommitdiffstats
path: root/remoting/webapp/viewer_plugin_proto.js
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-24 08:26:45 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-24 08:26:45 +0000
commit5cddcf44f297adcdbaf6f59883fa19e04d3d9045 (patch)
treee3e643309c9111c83eaf17be96df9c64f1756332 /remoting/webapp/viewer_plugin_proto.js
parenta0323d7a8f5989b7550e600ea570b20f43465a12 (diff)
downloadchromium_src-5cddcf44f297adcdbaf6f59883fa19e04d3d9045.zip
chromium_src-5cddcf44f297adcdbaf6f59883fa19e04d3d9045.tar.gz
chromium_src-5cddcf44f297adcdbaf6f59883fa19e04d3d9045.tar.bz2
Revert 118805 - Implement V2 authentication support in the client plugin.
Changed client plugin interface so that it receives information needed to for V2 authentication. Also moved authenticator creation out of ConnectionToHost. BUG=105214 Review URL: http://codereview.chromium.org/9195004 TBR=sergeyu@chromium.org Review URL: https://chromiumcodereview.appspot.com/9146032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118806 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/viewer_plugin_proto.js')
-rw-r--r--remoting/webapp/viewer_plugin_proto.js11
1 files changed, 3 insertions, 8 deletions
diff --git a/remoting/webapp/viewer_plugin_proto.js b/remoting/webapp/viewer_plugin_proto.js
index 63a865b..18d6461 100644
--- a/remoting/webapp/viewer_plugin_proto.js
+++ b/remoting/webapp/viewer_plugin_proto.js
@@ -26,17 +26,12 @@ remoting.ViewerPlugin.prototype.releaseAllKeys = function() {};
* @param {string} hostJid The host's JID.
* @param {string} hostPublicKey The host's public key.
* @param {string} clientJid The client's JID.
- * @param {string} sharedSecret The access code for IT2Me or the
- * PIN for Me2Me.
- * @param {string=} authenticationMethods Comma-separated list of
- * authentication methods the client should attempt to use.
- * @param {string=} authenticationTag A host-specific tag to mix into
- * authentication hashes.
+ * @param {string} authenticationCode The access code for IT2Me or the
+ * PIN for Me2Me.
* @return {void} Nothing.
*/
remoting.ViewerPlugin.prototype.connect =
- function(hostJid, hostPublicKey, clientJid, sharedSecret,
- authenticationMethod, authenticationTag) {};
+ function(hostJid, hostPublicKey, clientJid, authenticationCode) {};
/** @type {function(number, number): void} State change callback function. */
remoting.ViewerPlugin.prototype.connectionInfoUpdate;