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

Unified Diff: remoting/webapp/client_screen.js

Issue 9836062: Implement exponential backoff for failed Me2Me authentication attempts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/client_screen.js
diff --git a/remoting/webapp/client_screen.js b/remoting/webapp/client_screen.js
index 37c7b65245d3f67c0588572462a4aa170ceb74ab..52716863c3d45eee41da8d262b184ccb182137df 100644
--- a/remoting/webapp/client_screen.js
+++ b/remoting/webapp/client_screen.js
@@ -237,6 +237,9 @@ function onClientStateChange_(oldState, newState) {
} else if (remoting.clientSession.error ==
remoting.ClientSession.ConnectionError.NETWORK_FAILURE) {
showConnectError_(remoting.Error.NETWORK_FAILURE);
+ } else if (remoting.clientSession.error ==
+ remoting.ClientSession.ConnectionError.HOST_IS_DISABLED) {
+ showConnectError_(remoting.Error.HOST_IS_DISABLED);
} else {
showConnectError_(remoting.Error.GENERIC);
}

Powered by Google App Engine
This is Rietveld 408576698