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

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

Issue 1032553008: [Chromoting] Update client connection enums in JS to match C++. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add support for AUTHENTICATED in webapp Created 5 years, 9 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
Index: remoting/webapp/crd/js/log_to_server.js
diff --git a/remoting/webapp/crd/js/log_to_server.js b/remoting/webapp/crd/js/log_to_server.js
index 20c9b1ceccb070b57a6fc5ac578ffb8f40b2f3a7..dfe8cea10e0fbbfd1b7efd83bc2de004f64416fc 100644
--- a/remoting/webapp/crd/js/log_to_server.js
+++ b/remoting/webapp/crd/js/log_to_server.js
@@ -109,6 +109,7 @@ remoting.LogToServer.prototype.logSignalStrategyProgress =
remoting.LogToServer.isStartOfSession_ = function(state) {
return ((state == remoting.ClientSession.State.CONNECTING) ||
(state == remoting.ClientSession.State.INITIALIZING) ||
+ (state == remoting.ClientSession.State.AUTHENTICATED) ||
(state == remoting.ClientSession.State.CONNECTED));
};

Powered by Google App Engine
This is Rietveld 408576698