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

Unified Diff: remoting/webapp/base/js/chromoting_event.js

Issue 1397463003: Report the Auth method for me2me connections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/base/js/client_session.js » ('j') | remoting/webapp/base/js/client_session.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/chromoting_event.js
diff --git a/remoting/webapp/base/js/chromoting_event.js b/remoting/webapp/base/js/chromoting_event.js
index 1e724cf9dcdf0f9fd500f6d1a754354f1aa4667e..c0c9e6723bacfde910537bffe94c02ccecc211a2 100644
--- a/remoting/webapp/base/js/chromoting_event.js
+++ b/remoting/webapp/base/js/chromoting_event.js
@@ -92,6 +92,9 @@ remoting.ChromotingEvent = function(type) {
/** @type {number} */
this.host_status_update_elapsed_time;
+ /** @type {remoting.ChromotingEvent.AuthMethod} */
+ this.auth_method;
+
this.init_();
};
@@ -284,3 +287,11 @@ remoting.ChromotingEvent.SignalStrategyProgress = {
SUCCEEDED_LATE: 4,
FAILED_LATE: 5
};
+
+/** @enum {number} */
+remoting.ChromotingEvent.AuthMethod = {
+ PIN: 1,
+ ACCESS_CODE: 2,
+ PINLESS: 3,
+ THIRD_PARTY: 4,
+};
« no previous file with comments | « no previous file | remoting/webapp/base/js/client_session.js » ('j') | remoting/webapp/base/js/client_session.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698