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

Unified Diff: remoting/webapp/crd/js/client_session.js

Issue 878573006: Fix Security Key proxying. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/webapp/crd/js/desktop_remoting.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/client_session.js
diff --git a/remoting/webapp/crd/js/client_session.js b/remoting/webapp/crd/js/client_session.js
index 8c54cb743eedce5e197e53a30c940b372b61cf1a..f0fa9b4b95417eb6acbc78adfe3688b93a73344f 100644
--- a/remoting/webapp/crd/js/client_session.js
+++ b/remoting/webapp/crd/js/client_session.js
@@ -408,10 +408,6 @@ remoting.ClientSession.Capability = {
// Indicates that the client supports 'cast'ing the video stream to a
// cast-enabled device.
CAST: 'casting',
-
- // When enabled, this capability results in the client informing the host
- // that it supports Gnubby-based authentication.
- GNUBBY_AUTH: 'gnubbyAuth'
};
/**
@@ -1572,8 +1568,7 @@ remoting.ClientSession.prototype.processGnubbyAuthMessage_ = function(data) {
* @private
*/
remoting.ClientSession.prototype.createGnubbyAuthHandler_ = function() {
- if (this.hasCapability_(remoting.ClientSession.Capability.GNUBBY_AUTH) &&
- this.mode_ == remoting.ClientSession.Mode.ME2ME) {
+ if (this.mode_ == remoting.ClientSession.Mode.ME2ME) {
this.gnubbyAuthHandler_ = new remoting.GnubbyAuthHandler(this);
// TODO(psj): Move to more generic capabilities mechanism.
this.sendGnubbyAuthMessage({'type': 'control', 'option': 'auth-v1'});
« no previous file with comments | « no previous file | remoting/webapp/crd/js/desktop_remoting.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698