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

Unified Diff: remoting/client/plugin/chromoting_instance.cc

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/client/plugin/chromoting_instance.cc
diff --git a/remoting/client/plugin/chromoting_instance.cc b/remoting/client/plugin/chromoting_instance.cc
index b098fe11e03edae6421b12b836fc20192b5408d1..633bc929ce1922ca484e50fb219fcdcbca0c6927 100644
--- a/remoting/client/plugin/chromoting_instance.cc
+++ b/remoting/client/plugin/chromoting_instance.cc
@@ -79,6 +79,8 @@ std::string ConnectionErrorToString(ChromotingInstance::ConnectionError error) {
return "INCOMPATIBLE_PROTOCOL";
case ChromotingInstance::ERROR_NETWORK_FAILURE:
return "NETWORK_FAILURE";
+ case ChromotingInstance::ERROR_HOST_IS_DISABLED:
+ return "HOST_IS_DISABLED";
}
NOTREACHED();
return "";

Powered by Google App Engine
This is Rietveld 408576698